039b342e14
APIs covered : hipStreamGetPriority, hipStreamCreate, hipStreamGetFlags, hipExtStreamGetCUMask apis. Change-Id: I238b4e631938471eab05c598f91477eeb0856054
92 lines
3.6 KiB
C++
92 lines
3.6 KiB
C++
/*
|
|
Copyright (c) 2021 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 :
|
|
1) Test flag value of stream created with hipStreamCreateWithFlags/
|
|
/hipStreamCreate/hipStreamCreateWithPriority.
|
|
2) Negative tests for hipStreamGetFlags api.
|
|
3) Test flag value when streams created with CUMask.
|
|
*/
|
|
|
|
#include <hip_test_common.hh>
|
|
|
|
/**
|
|
* Test flag value of stream created with various types.
|
|
*/
|
|
TEST_CASE("Unit_hipStreamGetFlags_BasicFunctionalities") {
|
|
hipStream_t stream;
|
|
unsigned int flags;
|
|
// Check flag value of stream created with hipStreamCreateWithFlags
|
|
SECTION("Check flag value of streams hipStreamCreateWithFlags") {
|
|
HIP_CHECK(hipStreamCreateWithFlags(&stream, hipStreamDefault));
|
|
HIP_CHECK(hipStreamGetFlags(stream, &flags));
|
|
REQUIRE(flags == hipStreamDefault);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
HIP_CHECK(hipStreamCreateWithFlags(&stream, hipStreamNonBlocking));
|
|
HIP_CHECK(hipStreamGetFlags(stream, &flags));
|
|
REQUIRE(flags == hipStreamNonBlocking);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
}
|
|
// Check flag value of stream created with hipStreamCreate
|
|
SECTION("Check flag value of streams hipStreamCreate") {
|
|
HIP_CHECK(hipStreamCreate(&stream));
|
|
HIP_CHECK(hipStreamGetFlags(stream, &flags));
|
|
REQUIRE(flags == hipStreamDefault);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
}
|
|
// Check flag value of stream created with hipStreamCreateWithPriority
|
|
SECTION("Check flag value of streams hipStreamCreateWithPriority") {
|
|
HIP_CHECK(hipStreamCreateWithPriority(&stream, hipStreamDefault, 0));
|
|
HIP_CHECK(hipStreamGetFlags(stream, &flags));
|
|
REQUIRE(flags == hipStreamDefault);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
HIP_CHECK(hipStreamCreateWithPriority(&stream, hipStreamNonBlocking, 0));
|
|
HIP_CHECK(hipStreamGetFlags(stream, &flags));
|
|
REQUIRE(flags == hipStreamNonBlocking);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Negative Scenarios
|
|
*/
|
|
TEST_CASE("Unit_hipStreamGetFlags_Negative") {
|
|
hipStream_t stream;
|
|
HIP_CHECK(hipStreamCreate(&stream));
|
|
// nullptr check
|
|
REQUIRE(hipStreamGetFlags(stream, nullptr) != hipSuccess);
|
|
REQUIRE(hipStreamGetFlags(nullptr, hipStreamDefault) != hipSuccess);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
}
|
|
|
|
#if HT_AMD
|
|
/**
|
|
* Test flag value when streams created with CUMask.
|
|
*/
|
|
TEST_CASE("Unit_hipStreamGetFlags_StreamsCreatedWithCUMask") {
|
|
hipStream_t stream;
|
|
unsigned int flags;
|
|
const uint32_t cuMask = 0xffffffff;
|
|
HIP_CHECK(hipExtStreamCreateWithCUMask(&stream, 1, &cuMask));
|
|
HIP_CHECK(hipStreamGetFlags(stream, &flags));
|
|
REQUIRE(flags == hipStreamDefault);
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
}
|
|
#endif
|