forked from GPUOpen-LibrariesAndSDKs/Orochi
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Note: Google Test filter = *kernelExec*:*init*:*deviceprops*:*malloc* [==========] Running 6 tests from 1 test case. [----------] Global test environment set-up. [----------] 6 tests from OroTestBase [ RUN ] OroTestBase.init [ OK ] OroTestBase.init (91 ms) [ RUN ] OroTestBase.deviceprops executing on Intel(R) Arc(TM) A770 Graphics () 512 multiProcessors [ OK ] OroTestBase.deviceprops (6 ms) [ RUN ] OroTestBase.malloc [ OK ] OroTestBase.malloc (28 ms) [ RUN ] OroTestBase.kernelExec [ OK ] OroTestBase.kernelExec (81 ms) [ RUN ] OroTestBase.kernelExecPreCompiled 0: 123 1: 123 2: 123 3: 123 4: 123 5: 123 6: 123 7: 123 8: 123 9: 123 10: 123 11: 123 12: 123 13: 123 14: 123 15: 123 16: 123 17: 123 18: 123 19: 123 20: 123 21: 123 22: 123 23: 123 24: 123 25: 123 26: 123 27: 123 28: 123 29: 123 30: 123 31: 123 32: 123 33: 123 34: 123 35: 123 36: 123 37: 123 38: 123 39: 123 40: 123 41: 123 42: 123 43: 123 44: 123 45: 123 46: 123 47: 123 48: 123 49: 123 50: 123 51: 123 52: 123 53: 123 54: 123 55: 123 56: 123 57: 123 58: 123 59: 123 60: 123 61: 123 62: 123 63: 123 [ OK ] OroTestBase.kernelExecPreCompiled (126 ms) [ RUN ] OroTestBase.kernelExecPreCompiled1 executing on Intel(R) Arc(TM) A770 Graphics () 512 multiProcessors [ OK ] OroTestBase.kernelExecPreCompiled1 (93 ms) [----------] 6 tests from OroTestBase (427 ms total) [----------] Global test environment tear-down [==========] 6 tests from 1 test case ran. (428 ms total) [ PASSED ] 6 tests.
- Loading branch information
1 parent
b148fbc
commit 3eaabdc
Showing
4 changed files
with
72 additions
and
5 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
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
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,5 @@ | ||
__kernel void testKernel( __global int* a ) | ||
{ | ||
int tid = get_global_id( 0 ); | ||
atomic_add(a, tid); | ||
} |