Files
2022-08-08 09:29:20 +05:30

102 строки
3.4 KiB
C++

/*
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.
*/
#include "streamCommon.hh"
namespace hip {
inline namespace internal {
bool checkStreamPriority_(hipStream_t stream, bool checkPriority = false, int priority_ = 0) {
int priority{0};
HIP_CHECK(hipStreamGetPriority(stream, &priority));
if (checkPriority) {
if (priority_ != priority) {
UNSCOPED_INFO("Priority Mismatch, Expected Priority: " << priority_
<< " Actual Priority: " << priority);
return false;
}
} else {
int priority_low{0}, priority_high{0};
HIP_CHECK(hipDeviceGetStreamPriorityRange(&priority_low, &priority_high));
if (priority_low < priority || priority_high > priority) {
UNSCOPED_INFO("Priority Mismatch, Expected Priority Range: "
<< priority_low << " - " << priority_high << " Actual Priority: " << priority);
return false;
}
}
return true;
}
bool checkStreamFlags_(hipStream_t stream, bool checkFlags = false, unsigned flags_ = 0) {
unsigned flags{0};
HIP_CHECK(hipStreamGetFlags(stream, &flags));
if (checkFlags) {
if (flags_ != flags) {
UNSCOPED_INFO("Flags Mismatch, Expected Flag: " << flags_ << " Actual Flag: " << flags);
return false;
}
} else {
if (flags != hipStreamDefault && flags != hipStreamNonBlocking) {
UNSCOPED_INFO("Flags Mismatch, Expected Flag: " << hipStreamDefault << " or "
<< hipStreamNonBlocking
<< " Actual Flag: " << flags);
return false;
}
}
return true;
}
} // namespace internal
inline namespace stream {
/* Empty kernel to ensure work finishes on the stream quickly */
__global__ void empty_kernel() {}
bool checkStream(hipStream_t stream) {
{ // Check default flags
auto res = checkStreamFlags_(stream, true, hipStreamDefault);
if (!res) return false;
}
{ // Check default Priority
auto res = checkStreamPriority_(stream);
if (!res) return false;
}
return true;
}
bool checkStreamPriorityAndFlags(hipStream_t stream, int priority, unsigned int flags) {
{ // Check flags
auto res = checkStreamFlags_(stream, true, flags);
if (!res) return false;
}
{ // Check priority
auto res = checkStreamPriority_(stream, true, priority);
if (!res) return false;
}
return true;
}
} // namespace stream
} // namespace hip