diff --git a/projects/hip/tests/catch/unit/stream/CMakeLists.txt b/projects/hip/tests/catch/unit/stream/CMakeLists.txt index 7d7c6de46f..0fbb211593 100644 --- a/projects/hip/tests/catch/unit/stream/CMakeLists.txt +++ b/projects/hip/tests/catch/unit/stream/CMakeLists.txt @@ -17,6 +17,7 @@ set(TEST_SRC hipStreamSynchronize.cc hipStreamQuery.cc hipStreamWaitEvent.cc + hipDeviceGetStreamPriorityRange.cc ) else() set(TEST_SRC @@ -36,6 +37,7 @@ set(TEST_SRC hipStreamValue.cc hipStreamSynchronize.cc hipStreamQuery.cc + hipDeviceGetStreamPriorityRange.cc ) # set_source_files_properties(hipStreamAttachMemAsync.cc PROPERTIES COMPILE_FLAGS -std=c++17) diff --git a/projects/hip/tests/catch/unit/stream/hipDeviceGetStreamPriorityRange.cc b/projects/hip/tests/catch/unit/stream/hipDeviceGetStreamPriorityRange.cc new file mode 100644 index 0000000000..eb813f9086 --- /dev/null +++ b/projects/hip/tests/catch/unit/stream/hipDeviceGetStreamPriorityRange.cc @@ -0,0 +1,37 @@ +/* +Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ +/* +Testcase Scenarios : +Unit_hipDeviceGetStreamPriorityRange_Default - Check if device stream piority range is valid +*/ + +#include + +TEST_CASE("Unit_hipDeviceGetStreamPriorityRange_Default") { + int priority_low = 0; + int priority_high = 0; + int devID = GENERATE(range(0, HipTest::getDeviceCount())); + HIP_CHECK(hipSetDevice(devID)); + HIP_CHECK(hipDeviceGetStreamPriorityRange(&priority_low, &priority_high)); + + REQUIRE(priority_low >= priority_high); +}