diff options
author | Andrzej Janik <[email protected]> | 2021-03-03 00:59:47 +0100 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2021-03-03 00:59:47 +0100 |
commit | cdac38d572e2cd86036cbd85f753214b8e1a5172 (patch) | |
tree | e7cd1536e7a5e90b548f4159a7b196fb8e9326ce /ptx/src/test/spirv_run/mod.rs | |
parent | 648035a01a84cd87b7f917b277e4e2faad7bb731 (diff) | |
download | ZLUDA-cdac38d572e2cd86036cbd85f753214b8e1a5172.tar.gz ZLUDA-cdac38d572e2cd86036cbd85f753214b8e1a5172.zip |
Support kernel tuning directives
Diffstat (limited to 'ptx/src/test/spirv_run/mod.rs')
-rw-r--r-- | ptx/src/test/spirv_run/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ptx/src/test/spirv_run/mod.rs b/ptx/src/test/spirv_run/mod.rs index 91e6113..4178e2f 100644 --- a/ptx/src/test/spirv_run/mod.rs +++ b/ptx/src/test/spirv_run/mod.rs @@ -152,6 +152,7 @@ test_ptx!(shared_ptr_take_address, [97815231u64], [97815231u64]); // For now, we just make sure that it builds and links
test_ptx!(assertfail, [716523871u64], [716523872u64]);
test_ptx!(cvt_s64_s32, [-1i32], [-1i64]);
+test_ptx!(add_tuning, [2u64], [3u64]);
struct DisplayError<T: Debug> {
err: T,
|