Skip to content

Commit

Permalink
SWDEV-412880 - [catch2][dtest] Adding test cases for functions define…
Browse files Browse the repository at this point in the history
…d inside hip_vector_types.h, hip_fp16.h, texture_types.h and math_functions.h

Change-Id: I5427898303babc1f1f0dc4b15921e9f1cd52c4ad
  • Loading branch information
meher-bhiutras authored and rakesroy committed Feb 13, 2024
1 parent e1aa13c commit 8d8db1f
Show file tree
Hide file tree
Showing 5 changed files with 2,049 additions and 0 deletions.
4 changes: 4 additions & 0 deletions catch/unit/rtc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ set(AMD_TEST_SRC
shfl.cc
stdheaders.cc
hiprtc_MathConstants_HeaderTst.cc
hiprtc_VectorTypes_HeaderTst.cc
hiprtc_MathFunctions_HeaderTst.cc
hiprtc_fp16_HeaderTst.cc
hiprtc_TextureTypes_HeaderTst.cc
)

add_custom_target(copyRtcHeaders ALL
Expand Down
125 changes: 125 additions & 0 deletions catch/unit/rtc/hiprtc_MathFunctions_HeaderTst.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
/*
Copyright (c) 2024 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.
*/

/**
* @addtogroup hiprtc_MathFunctions_HeaderTst hiprtc_MathFunctions_HeaderTst
* @{
* @ingroup hiprtcHeaders
* `hiprtcResult hiprtcCompileProgram(hiprtcProgram prog,
* int numOptions,
* const char** options);` -
* These test cases are target including various header file in kernel
* string and compile using the api mentioned above.
*/

#include <hip/hiprtc.h>
#include <hip/hip_runtime.h>
#include <hip/math_functions.h>
#include <hip_test_common.hh>

static constexpr auto mathFuntn_string {
R"(
extern "C"
__global__ void mathFuntn(float *res) {
res[0] = (amd_mixed_dot((short2)10, (short2)20, (int)30, 1) == 430);
res[1] = (amd_mixed_dot((ushort2)10, (ushort2)20, (uint)30, 1) == 430);
res[2] = (amd_mixed_dot((char)10, (char)20, (int)30, 1) == 6);
res[3] = (amd_mixed_dot((uchar4)'a', (uchar4)'b', (uint)30, 1) == 38054);
res[4] = (amd_mixed_dot(10, 20, 30, 1) == 6);
res[5] = (amd_mixed_dot((uint)10, (uint)20, (uint)30, 1) == 70);
}
)"};

/**
* Test Description
* ------------------------
* - Functional Test for API - hiprtcCompileProgram
* 1) To test working of "hip/math_functions.h" header inside kernel string
* Test source
* ------------------------
* - unit/rtc/hiprtc_MathFunctions_HeaderTst.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 6.1
*/

TEST_CASE("Unit_Rtc_MathFunctions_header") {
std::string kernel_name = "mathFuntn";
const char* kername = kernel_name.c_str();
float *result_h;
float *result_d;
int n = 6;
int Nbytes = n * sizeof(float);
result_h = new float[n];
for (int i = 0; i < n; i++) {
result_h[i] = 0;
}
HIP_CHECK(hipMalloc(&result_d, Nbytes));
HIP_CHECK(hipMemcpy(result_d, result_h, Nbytes, hipMemcpyHostToDevice));
hipDeviceProp_t prop;
HIP_CHECK(hipGetDeviceProperties(&prop, 0));
std::string architecture = prop.gcnArchName;
std::string complete_CO = "--gpu-architecture=" + architecture;
const char* compiler_option = complete_CO.c_str();

hiprtcProgram prog;
HIPRTC_CHECK(hiprtcCreateProgram(&prog, mathFuntn_string,
kername, 0, NULL, NULL));
hiprtcResult compileResult{hiprtcCompileProgram(prog,
1, &compiler_option)};
if (!(compileResult == HIPRTC_SUCCESS)) {
WARN("hiprtcCompileProgram() api failed!!");
size_t logSize;
HIPRTC_CHECK(hiprtcGetProgramLogSize(prog, &logSize));
std::string log(logSize, '\0');
HIPRTC_CHECK(hiprtcGetProgramLog(prog, &log[0]));
WARN(log);
REQUIRE(false);
}

size_t codeSize;
HIPRTC_CHECK(hiprtcGetCodeSize(prog, &codeSize));
std::vector<char> codec(codeSize);
HIPRTC_CHECK(hiprtcGetCode(prog, codec.data()));
void* kernelParam[] = {result_d};
auto size = sizeof(kernelParam);
void* kernel_parameter[] = {HIP_LAUNCH_PARAM_BUFFER_POINTER, &kernelParam,
HIP_LAUNCH_PARAM_BUFFER_SIZE, &size,
HIP_LAUNCH_PARAM_END};
hipModule_t module;
hipFunction_t function;
HIP_CHECK(hipModuleLoadData(&module, codec.data()));
HIP_CHECK(hipModuleGetFunction(&function, module, kername));
HIP_CHECK(hipModuleLaunchKernel(function, 1, 1, 1, 1, 1, 1, 0, 0, nullptr,
kernel_parameter));
HIP_CHECK(hipDeviceSynchronize());
HIP_CHECK(hipMemcpy(result_h, result_d, Nbytes, hipMemcpyDeviceToHost));
for (int i = 0; i < n; i++) {
if (result_h[i] != 1.0f) {
WARN("FAIL for " << i << " iteration");
WARN(result_h[i]);
REQUIRE(false);
}
}
HIP_CHECK(hipModuleUnload(module));
HIPRTC_CHECK(hiprtcDestroyProgram(&prog));
HIP_CHECK(hipFree(result_d));
delete [] result_h;
REQUIRE(true);
}
133 changes: 133 additions & 0 deletions catch/unit/rtc/hiprtc_TextureTypes_HeaderTst.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
/*
Copyright (c) 2024 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.
*/

/**
* @addtogroup hiprtc_TextureTypes_HeaderTst hiprtc_TextureTypes_HeaderTst
* @{
* @ingroup hiprtcHeaders
* `hiprtcResult hiprtcCompileProgram(hiprtcProgram prog, int numOptions,
* const char** options);` -
* These test cases are target including various header file in kernel
* string and compile using the api mentioned above.
*/

#include <hip/hiprtc.h>
#include <hip/hip_runtime.h>
#include <hip_test_common.hh>

static constexpr auto TextureTypes_string {
R"(
extern "C"
__global__ void TextureTypes(float *res) {
res[0] = (hipTextureType1D == 0x01);
res[1] = (hipTextureType2D == 0x02);
res[2] = (hipTextureType3D == 0x03);
res[3] = (hipTextureTypeCubemap == 0x0C);
res[4] = (hipTextureType1DLayered == 0xF1);
res[5] = (hipTextureType2DLayered == 0xF2);
res[6] = (hipTextureTypeCubemapLayered == 0xFC);
res[7] = (HIP_IMAGE_OBJECT_SIZE_DWORD == 12);
res[8] = (HIP_SAMPLER_OBJECT_SIZE_DWORD == 8);
res[9] = (hipAddressModeWrap == 0);
res[10] = (hipAddressModeClamp == 1);
res[11] = (hipAddressModeMirror == 2);
res[12] = (hipAddressModeBorder == 3);
res[13] = (hipFilterModePoint == 0);
res[14] = (hipFilterModeLinear == 1);
res[15] = (hipReadModeElementType == 0);
res[16] = (hipReadModeNormalizedFloat == 1);
}
)"};

/**
* Test Description
* ------------------------
* - Functional Test for API - hiprtcCompileProgram
* 1) To test working of "hip/texture_types.h" header inside kernel string
* Test source
* ------------------------
* - unit/rtc/hiprtc_TextureTypes_HeaderTst.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 6.1
*/

TEST_CASE("Unit_Rtc_TextureTypes_header") {
std::string kernel_name = "TextureTypes";
const char* kername = kernel_name.c_str();
float *result_h;
float *result_d;
int n = 17;
int Nbytes = n * sizeof(float);
result_h = new float[n];
for (int i = 0; i < n; i++) {
result_h[i] = 0;
}
HIP_CHECK(hipMalloc(&result_d, Nbytes));
HIP_CHECK(hipMemcpy(result_d, result_h, Nbytes, hipMemcpyHostToDevice));
hipDeviceProp_t prop;
HIP_CHECK(hipGetDeviceProperties(&prop, 0));
std::string architecture = prop.gcnArchName;
std::string complete_CO = "--gpu-architecture=" + architecture;
const char* compiler_option = complete_CO.c_str();
hiprtcProgram prog;

HIPRTC_CHECK(hiprtcCreateProgram(&prog, TextureTypes_string,
kername, 0, NULL, NULL));
hiprtcResult compileResult{hiprtcCompileProgram(prog,
1, &compiler_option)};
if (!(compileResult == HIPRTC_SUCCESS)) {
WARN("hiprtcCompileProgram() api failed!!");
size_t logSize;
HIPRTC_CHECK(hiprtcGetProgramLogSize(prog, &logSize));
std::string log(logSize, '\0');
HIPRTC_CHECK(hiprtcGetProgramLog(prog, &log[0]));
WARN(log);
REQUIRE(false);
}
size_t codeSize;
HIPRTC_CHECK(hiprtcGetCodeSize(prog, &codeSize));
std::vector<char> codec(codeSize);
HIPRTC_CHECK(hiprtcGetCode(prog, codec.data()));
void* kernelParam[] = {result_d};
auto size = sizeof(kernelParam);
void* kernel_parameter[] = {HIP_LAUNCH_PARAM_BUFFER_POINTER, &kernelParam,
HIP_LAUNCH_PARAM_BUFFER_SIZE, &size,
HIP_LAUNCH_PARAM_END};
hipModule_t module;
hipFunction_t function;
HIP_CHECK(hipModuleLoadData(&module, codec.data()));
HIP_CHECK(hipModuleGetFunction(&function, module, kername));
HIP_CHECK(hipModuleLaunchKernel(function, 1, 1, 1, 1, 1, 1, 0, 0, nullptr,
kernel_parameter));
HIP_CHECK(hipDeviceSynchronize());
HIP_CHECK(hipMemcpy(result_h, result_d, Nbytes, hipMemcpyDeviceToHost));
for (int i = 0; i < n; i++) {
if (result_h[i] != 1) {
WARN("FAIL for " << i << " iteration");
WARN(result_h[i]);
REQUIRE(false);
}
}
HIP_CHECK(hipModuleUnload(module));
HIPRTC_CHECK(hiprtcDestroyProgram(&prog));
HIP_CHECK(hipFree(result_d));
delete [] result_h;
REQUIRE(true);
}
Loading

0 comments on commit 8d8db1f

Please sign in to comment.