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
11 rindas
296 B
CMake
11 rindas
296 B
CMake
# Common Tests - Test independent of all platforms
|
|
set(TEST_SRC
|
|
Stress_hipStreamCreate.cc
|
|
)
|
|
|
|
# Create shared lib of all tests
|
|
add_library(stream SHARED EXCLUDE_FROM_ALL ${TEST_SRC})
|
|
|
|
# Add dependency on build_tests to build it on this custom target
|
|
add_dependencies(build_stress_test stream)
|