-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[refactor] Migrate {set, get}_{arg, ret} functions from RuntimeContext
to LaunchContextBuilder ghstack-source-id: b21aef43298ffef0a3251f6e0c2b3150e8acb34e Pull Request resolved: #7550
- Loading branch information
1 parent
97260fc
commit f82242b
Showing
3 changed files
with
208 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Doesn't contain f16 and u1. | ||
PER_C_TYPE(f32, float32) | ||
PER_C_TYPE(f64, float64) | ||
PER_C_TYPE(i8, int8) | ||
PER_C_TYPE(i16, int16) | ||
PER_C_TYPE(i32, int32) | ||
PER_C_TYPE(i64, int64) | ||
PER_C_TYPE(u8, uint8) | ||
PER_C_TYPE(u16, uint16) | ||
PER_C_TYPE(u32, uint32) | ||
PER_C_TYPE(u64, uint64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters