1b53e0c51c
http://ontrack-internal.amd.com/browse/SWDEV-230423 1. Moving stress folder from hip/test/src to hip/test. 2. Adding Stream stress tests. These stress tests create multiple streams and launches kernel on them in multiple combinations for 100000 iterations. These tests will test the stability of streams created using hipStreamCreate, hipStreamCreateWithPriority and hipStreamCreateWithFlags. 3. Adding printf stress tests using simple kernels. 4. Adding printf stress tests using a complex kernel. Change-Id: Idcd26707fb9504ab8dbe6cebcbb32ade61bf1483
12 řádky
337 B
CMake
12 řádky
337 B
CMake
# Common Tests - Test independent of all platforms
|
|
set(TEST_SRC
|
|
Stress_printf_ComplexKernels.cc
|
|
Stress_printf_SimpleKernels.cc
|
|
)
|
|
|
|
# Create shared lib of all tests
|
|
add_library(printf SHARED EXCLUDE_FROM_ALL ${TEST_SRC})
|
|
|
|
# Add dependency on build_tests to build it on this custom target
|
|
add_dependencies(build_stress_test printf)
|