217 строки
9.1 KiB
C++
217 строки
9.1 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 "execution_control_common.hh"
|
|
|
|
#include <hip_test_common.hh>
|
|
#include <hip/hip_runtime_api.h>
|
|
#include <resource_guards.hh>
|
|
#include <utils.hh>
|
|
|
|
TEST_CASE("Unit_hipExtLaunchKernel_Positive_Basic") {
|
|
SECTION("Kernel with no arguments") {
|
|
HIP_CHECK(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1}, dim3{1, 1, 1},
|
|
nullptr, 0, nullptr, nullptr, nullptr, 0u));
|
|
HIP_CHECK(hipDeviceSynchronize());
|
|
}
|
|
|
|
SECTION("Kernel with arguments using kernelParams") {
|
|
LinearAllocGuard<int> result_dev(LinearAllocs::hipMalloc, sizeof(int));
|
|
HIP_CHECK(hipMemset(result_dev.ptr(), 0, sizeof(*result_dev.ptr())));
|
|
int* result_ptr = result_dev.ptr();
|
|
void* kernel_args[1] = {&result_ptr};
|
|
HIP_CHECK(hipExtLaunchKernel(reinterpret_cast<void*>(kernel_42), dim3{1, 1, 1}, dim3{1, 1, 1},
|
|
kernel_args, 0, nullptr, nullptr, nullptr, 0u));
|
|
int result = 0;
|
|
HIP_CHECK(hipMemcpy(&result, result_dev.ptr(), sizeof(result), hipMemcpyDefault));
|
|
REQUIRE(result == 42);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("Unit_hipExtLaunchKernel_Positive_Parameters") {
|
|
SECTION("blockDim.x == maxBlockDimX") {
|
|
const unsigned int x = GetDeviceAttribute(hipDeviceAttributeMaxBlockDimX, 0);
|
|
HIP_CHECK(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1}, dim3{x, 1, 1},
|
|
nullptr, 0, nullptr, nullptr, nullptr, 0u));
|
|
}
|
|
|
|
SECTION("blockDim.y == maxBlockDimY") {
|
|
const unsigned int y = GetDeviceAttribute(hipDeviceAttributeMaxBlockDimY, 0);
|
|
HIP_CHECK(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1}, dim3{y, 1, 1},
|
|
nullptr, 0, nullptr, nullptr, nullptr, 0u));
|
|
}
|
|
|
|
SECTION("blockDim.z == maxBlockDimZ") {
|
|
const unsigned int z = GetDeviceAttribute(hipDeviceAttributeMaxBlockDimZ, 0);
|
|
HIP_CHECK(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1}, dim3{z, 1, 1},
|
|
nullptr, 0, nullptr, nullptr, nullptr, 0u));
|
|
}
|
|
}
|
|
|
|
TEST_CASE("Unit_hipExtLaunchKernel_Negative_Parameters") {
|
|
SECTION("f == nullptr") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(nullptr, dim3{1, 1, 1}, dim3{1, 1, 1}, nullptr, 0, nullptr,
|
|
nullptr, nullptr, 0u),
|
|
hipErrorInvalidDeviceFunction);
|
|
}
|
|
|
|
SECTION("gridDim.x == 0") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{0, 1, 1},
|
|
dim3{1, 1, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("gridDim.y == 0") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 0, 1},
|
|
dim3{1, 1, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("gridDim.z == 0") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 0},
|
|
dim3{1, 1, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.x == 0") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{0, 1, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.y == 0") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 0, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.z == 0") {
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 1, 0}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.x > maxBlockDimX") {
|
|
const unsigned int x = GetDeviceAttribute(hipDeviceAttributeMaxBlockDimX, 0) + 1u;
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{x, 1, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.y > maxBlockDimY") {
|
|
const unsigned int y = GetDeviceAttribute(hipDeviceAttributeMaxBlockDimY, 0) + 1u;
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, y, 1}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.z > maxBlockDimZ") {
|
|
const unsigned int z = GetDeviceAttribute(hipDeviceAttributeMaxBlockDimZ, 0) + 1u;
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 1, z}, nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("blockDim.x * blockDim.y * blockDim.z > maxThreadsPerBlock") {
|
|
const unsigned int max = GetDeviceAttribute(hipDeviceAttributeMaxThreadsPerBlock, 0);
|
|
const unsigned int dim = std::ceil(std::cbrt(max));
|
|
HIP_CHECK_ERROR(
|
|
hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1}, dim3{dim, dim, dim},
|
|
nullptr, 0, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidConfiguration);
|
|
}
|
|
|
|
SECTION("sharedMemBytes > maxSharedMemoryPerBlock") {
|
|
const unsigned int max = GetDeviceAttribute(hipDeviceAttributeMaxSharedMemoryPerBlock, 0) + 1u;
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 1, 1}, nullptr, max, nullptr, nullptr, nullptr, 0u),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Invalid stream") {
|
|
hipStream_t stream = nullptr;
|
|
HIP_CHECK(hipStreamCreate(&stream));
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 1, 1}, nullptr, 0, stream, nullptr, nullptr, 0u),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Invalid startEvent") {
|
|
hipEvent_t event = nullptr;
|
|
HIP_CHECK(hipEventCreate(&event));
|
|
HIP_CHECK(hipEventDestroy(event));
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 1, 1}, nullptr, 0, nullptr, event, nullptr, 0u),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Invalid endEvent") {
|
|
hipEvent_t event = nullptr;
|
|
HIP_CHECK(hipEventCreate(&event));
|
|
HIP_CHECK(hipEventDestroy(event));
|
|
HIP_CHECK_ERROR(hipExtLaunchKernel(reinterpret_cast<void*>(kernel), dim3{1, 1, 1},
|
|
dim3{1, 1, 1}, nullptr, 0, nullptr, nullptr, event, 0u),
|
|
hipErrorInvalidValue);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test Description
|
|
* ------------------------
|
|
* - Basic functional testcase to trigger capturehipExtLaunchKernel internal api
|
|
* to improve code coverage.
|
|
* Test source
|
|
* ------------------------
|
|
* - unit/executionControl/hipExtLaunchKernel.cc
|
|
* Test requirements
|
|
* ------------------------
|
|
* - HIP_VERSION >= 6.0
|
|
*/
|
|
TEST_CASE("Unit_hipExtLaunchKernel_capturehipExtLaunchKernel") {
|
|
hipStream_t stream;
|
|
HIP_CHECK(hipStreamCreate(&stream));
|
|
int* A_d;
|
|
int* A_h = nullptr;
|
|
A_h = reinterpret_cast<int*>(malloc(sizeof(int)));
|
|
HIP_CHECK(hipMalloc(reinterpret_cast<void**>(&A_d), sizeof(int)));
|
|
void* args[1] = {&A_d};
|
|
|
|
// Begin Capture operation
|
|
GENERATE_CAPTURE();
|
|
BEGIN_CAPTURE(stream);
|
|
HIP_CHECK(hipExtLaunchKernel(reinterpret_cast<void*>(kernel_42), dim3{1, 1, 1}, dim3{1, 1, 1},
|
|
args, 0, stream, nullptr, nullptr, 0u));
|
|
// End Capture
|
|
END_CAPTURE(stream);
|
|
|
|
HIP_CHECK(hipStreamSynchronize(stream));
|
|
|
|
HIP_CHECK(hipMemcpyDtoH(A_h, A_d, sizeof(int)));
|
|
REQUIRE(A_h != nullptr);
|
|
REQUIRE(*A_h == 42);
|
|
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
HIP_CHECK(hipFree(A_d));
|
|
free(A_h);
|
|
}
|