7def265d94
Change-Id: I2399f7247f5172fdc7980a4652ff68df4b5598c5
135 wiersze
4.5 KiB
C++
135 wiersze
4.5 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 <hip_test_common.hh>
|
|
#include "hipArrayCommon.hh"
|
|
#include "utils.hh"
|
|
|
|
/*
|
|
* hipFreeMipmappedArray API test scenarios
|
|
* 1. Check that hipFreeMipmappedArray implicitly synchronises the device.
|
|
* 2. Perform multiple allocations and then call hipFreeMipmappedArray on each pointer concurrently (from unique
|
|
* threads) for different memory types and different allocation sizes.
|
|
* 3. Pass nullptr as argument and check that correct error code is returned.
|
|
* 4. Call hipFreeMipmappedArray twice on the same pointer and check that the implementation handles the second
|
|
* call correctly.
|
|
*/
|
|
|
|
TEMPLATE_TEST_CASE("Unit_hipFreeMipmappedArrayImplicitSyncArray", "", char, float) {
|
|
hipMipmappedArray_t arrayPtr{};
|
|
hipExtent extent{};
|
|
hipChannelFormatDesc desc = hipCreateChannelDesc<TestType>();
|
|
|
|
#if HT_AMD
|
|
const unsigned int flags = hipArrayDefault;
|
|
#else
|
|
const unsigned int flags = GENERATE(hipArrayDefault, hipArraySurfaceLoadStore);
|
|
#endif
|
|
|
|
extent.width = GENERATE(64, 256, 1024);
|
|
extent.height = GENERATE(64, 256, 1024);
|
|
extent.depth = GENERATE(0, 64, 256, 1024);
|
|
|
|
const unsigned int numLevels = GENERATE(1, 5, 7);
|
|
|
|
HIP_CHECK(hipMallocMipmappedArray(&arrayPtr, &desc, extent, numLevels, flags));
|
|
|
|
LaunchDelayKernel(std::chrono::milliseconds{50}, nullptr);
|
|
// make sure device is busy
|
|
HIP_CHECK_ERROR(hipStreamQuery(nullptr), hipErrorNotReady);
|
|
HIP_CHECK(hipFreeMipmappedArray(arrayPtr));
|
|
HIP_CHECK(hipStreamQuery(nullptr));
|
|
}
|
|
|
|
TEST_CASE("Unit_hipFreeMipmappedArray_Negative_Nullptr") {
|
|
HIP_CHECK_ERROR(hipFreeMipmappedArray(nullptr), hipErrorInvalidValue);
|
|
}
|
|
|
|
TEST_CASE("Unit_hipFreeMipmappedArray_Negative_DoubleFree") {
|
|
hipMipmappedArray_t arrayPtr{};
|
|
hipExtent extent{};
|
|
hipChannelFormatDesc desc = hipCreateChannelDesc<char>();
|
|
|
|
#if HT_AMD
|
|
const unsigned int flags = hipArrayDefault;
|
|
#else
|
|
const unsigned int flags = GENERATE(hipArrayDefault, hipArraySurfaceLoadStore);
|
|
#endif
|
|
|
|
extent.width = GENERATE(64, 512, 1024);
|
|
extent.height = GENERATE(64, 512, 1024);
|
|
extent.depth = GENERATE(0, 64, 512, 1024);
|
|
|
|
const unsigned int numLevels = GENERATE(1, 5, 7);
|
|
|
|
HIP_CHECK(hipMallocMipmappedArray(&arrayPtr, &desc, extent, numLevels, flags));
|
|
|
|
HIP_CHECK(hipFreeMipmappedArray(arrayPtr));
|
|
HIP_CHECK_ERROR(hipFreeMipmappedArray(arrayPtr), hipErrorContextIsDestroyed);
|
|
}
|
|
|
|
TEMPLATE_TEST_CASE("Unit_hipFreeMipmappedArrayMultiTArray", "", char, int) {
|
|
constexpr size_t numAllocs = 10;
|
|
std::vector<std::thread> threads;
|
|
std::vector<hipMipmappedArray_t> ptrs(numAllocs);
|
|
hipExtent extent{};
|
|
hipChannelFormatDesc desc = hipCreateChannelDesc<TestType>();
|
|
|
|
const unsigned int numLevels = GENERATE(1, 5, 7);
|
|
|
|
#if HT_AMD
|
|
const unsigned int flags = hipArrayDefault;
|
|
#else
|
|
const unsigned int flags = GENERATE(hipArrayDefault, hipArraySurfaceLoadStore);
|
|
#endif
|
|
|
|
extent.width = GENERATE(64, 256, 1024);
|
|
extent.height = GENERATE(64, 256, 1024);
|
|
extent.depth = GENERATE(0, 64, 256, 1024);
|
|
|
|
int i = 0;
|
|
for (; i < ptrs.size(); i++) {
|
|
if (hipErrorOutOfMemory == hipMallocMipmappedArray(&ptrs[i], &desc, extent,
|
|
numLevels, flags)) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
for (int j = 0; j < i; j++) {
|
|
threads.emplace_back([ptrs,j] {
|
|
if (hipSuccess != hipFreeMipmappedArray(ptrs[j])) {
|
|
return;
|
|
}
|
|
if (hipSuccess != hipStreamQuery(nullptr)) {
|
|
return;
|
|
}
|
|
});
|
|
}
|
|
|
|
for (auto& t : threads) {
|
|
t.join();
|
|
}
|
|
|
|
HIP_CHECK_THREAD_FINALIZE();
|
|
}
|