/* Copyright (c) 2023 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 #include #include #include #pragma clang diagnostic ignored "-Wunused-variable" #pragma clang diagnostic ignored "-Wunused-parameter" template __global__ void tex1dKernelFetch(T *val, hipTextureObject_t obj, int N) { #if !defined(__HIP_NO_IMAGE_SUPPORT) || !__HIP_NO_IMAGE_SUPPORT int k = blockIdx.x * blockDim.x + threadIdx.x; if (k < N) { val[k] = tex1Dfetch(obj, k); } #endif } template< typename T, typename std::enable_if() == 1>::type* = nullptr> static inline void printVector(T &val) { using B = decltype(T::x); constexpr bool isChar = std::is_same::value || std::is_same::value; std::cout << "("; std::cout << (isChar ? static_cast(val.x) : val.x); std::cout << ")"; } template< typename T, typename std::enable_if() == 2>::type* = nullptr> static inline void printVector(T &val) { using B = decltype(T::x); constexpr bool isChar = std::is_same::value || std::is_same::value; std::cout << "("; std::cout << (isChar ? static_cast(val.x) : val.x); std::cout << ", " << (isChar ? static_cast(val.y) : val.y); std::cout << ")"; } template< typename T, typename std::enable_if() == 4>::type* = nullptr> static inline void printVector(T &val) { using B = decltype(T::x); constexpr bool isChar = std::is_same::value || std::is_same::value; std::cout << "("; std::cout << (isChar ? static_cast(val.x) : val.x); std::cout << ", " << (isChar ? static_cast(val.y) : val.y); std::cout << ", " << (isChar ? static_cast(val.z) : val.z); std::cout << ", " << (isChar ? static_cast(val.w) : val.w); std::cout << ")"; } template bool runTest() { const int N = 1024; bool testResult = true; // Allocating the required buffer on gpu device T *texBuf, *texBufOut; T val[N], output[N]; auto err = hipGetLastError(); // Clear err due to negative tests memset(output, 0, sizeof(output)); std::srand(std::time(nullptr)); // use current time as seed for random generator for (int i = 0; i < N; i++) { initVal(val[i]); } HIP_CHECK(hipMalloc(&texBuf, N * sizeof(T))); HIP_CHECK(hipMalloc(&texBufOut, N * sizeof(T))); HIP_CHECK(hipMemcpy(texBuf, val, N * sizeof(T), hipMemcpyHostToDevice)); HIP_CHECK(hipMemset(texBufOut, 0, N * sizeof(T))); hipResourceDesc resDescLinear; memset(&resDescLinear, 0, sizeof(resDescLinear)); resDescLinear.resType = hipResourceTypeLinear; resDescLinear.res.linear.devPtr = texBuf; resDescLinear.res.linear.desc = hipCreateChannelDesc(); resDescLinear.res.linear.sizeInBytes = N * sizeof(T); hipTextureDesc texDesc; memset(&texDesc, 0, sizeof(texDesc)); texDesc.readMode = hipReadModeElementType; texDesc.addressMode[0] = hipAddressModeClamp; // Creating texture object hipTextureObject_t texObj = 0; HIP_CHECK(hipCreateTextureObject(&texObj, &resDescLinear, &texDesc, NULL)); dim3 dimBlock(64, 1, 1); dim3 dimGrid((N + dimBlock.x - 1) / dimBlock.x, 1, 1); hipLaunchKernelGGL(tex1dKernelFetch, dimGrid, dimBlock, 0, 0, texBufOut, texObj, N); HIP_CHECK(hipGetLastError()); HIP_CHECK(hipDeviceSynchronize()); HIP_CHECK(hipMemcpy(output, texBufOut, N * sizeof(T), hipMemcpyDeviceToHost)); for (int i = 0; i < N; i++) { if (!isEqual(output[i], val[i])) { std::cout << "output[" << i << "]= "; printVector(output[i]); std::cout << ", expected val[" << i << "]= "; printVector(val[i]); std::cout << "\n"; testResult = false; break; } } HIP_CHECK(hipDestroyTextureObject(texObj)); HIP_CHECK(hipFree(texBuf)); HIP_CHECK(hipFree(texBufOut)); REQUIRE(testResult == true); return testResult; } TEST_CASE("Unit_hipTextureFetch_vector") { CHECK_IMAGE_SUPPORT // test for char runTest(); runTest(); runTest(); // test for uchar runTest(); runTest(); runTest(); // test for short runTest(); runTest(); runTest(); // test for ushort runTest(); runTest(); runTest(); // test for int runTest(); runTest(); runTest(); // test for unsigned int runTest(); runTest(); runTest(); // test for float runTest(); runTest(); runTest(); }