From d45eb3bb0199539b5f4c1006ab04031f119c63a6 Mon Sep 17 00:00:00 2001 From: nives-vukovic <110852104+nives-vukovic@users.noreply.github.com> Date: Mon, 26 Sep 2022 07:32:49 +0200 Subject: [PATCH] EXSWHTEC-18 - Implement positive test for hipDeviceGetStreamPriorityRange (#2911) - Add hipDeviceGetStreamPriorityRange.cc file with a test for simple device stream priority range check - Add newly created file into CMakeLists.txt [ROCm/hip commit: 66471b01c946e22efbea84bb1a1e28d4d851164a] --- .../tests/catch/unit/stream/CMakeLists.txt | 2 + .../stream/hipDeviceGetStreamPriorityRange.cc | 37 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 projects/hip/tests/catch/unit/stream/hipDeviceGetStreamPriorityRange.cc 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); +}