516c38bcfd
Change-Id: I2cb7bbd9a6d9da28116ba9dd9cec4e60525444e2
[ROCm/hip-tests commit: e2c6bb5b4e]
195 lines
7.4 KiB
C++
195 lines
7.4 KiB
C++
/*
|
|
Copyright (c) 2021 - 2021 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 <hip/device_functions.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <algorithm>
|
|
#include <stdlib.h>
|
|
#include <iostream>
|
|
#include <random>
|
|
|
|
// CPU implementation of bitextract
|
|
template <typename T> T bit_extract(T src0, unsigned int src1, unsigned int src2) {
|
|
unsigned int bits = sizeof(T) * 8;
|
|
T offset = src1 & (bits - 1);
|
|
T width = src2 & (bits - 1);
|
|
if (width == 0) {
|
|
return 0;
|
|
} else {
|
|
return (src0 << (bits - width - offset)) >> (bits - width);
|
|
}
|
|
}
|
|
|
|
__global__ void HIP_kernel(unsigned int* out32, unsigned int* in32_0, unsigned int* in32_1,
|
|
unsigned int* in32_2, unsigned long long int* out64,
|
|
unsigned long long int* in64_0, unsigned int* in64_1,
|
|
unsigned int* in64_2) {
|
|
int x = blockDim.x * blockIdx.x + threadIdx.x;
|
|
|
|
out32[x] = __bitextract_u32(in32_0[x], in32_1[x], in32_2[x]);
|
|
out64[x] = __bitextract_u64(in64_0[x], in64_1[x], in64_2[x]);
|
|
}
|
|
|
|
TEST_CASE("Unit_bitExtract") {
|
|
using namespace std;
|
|
|
|
unsigned int* hostOut32;
|
|
unsigned int* hostSrc032;
|
|
unsigned int* hostSrc132;
|
|
unsigned int* hostSrc232;
|
|
unsigned long long int* hostOut64;
|
|
unsigned long long int* hostSrc064;
|
|
unsigned int* hostSrc164;
|
|
unsigned int* hostSrc264;
|
|
|
|
unsigned int* deviceOut32;
|
|
unsigned int* deviceSrc032;
|
|
unsigned int* deviceSrc132;
|
|
unsigned int* deviceSrc232;
|
|
unsigned long long int* deviceOut64;
|
|
unsigned long long int* deviceSrc064;
|
|
unsigned int* deviceSrc164;
|
|
unsigned int* deviceSrc264;
|
|
|
|
hipDeviceProp_t devProp;
|
|
HIP_CHECK(hipGetDeviceProperties(&devProp, 0));
|
|
INFO("System minor : " << devProp.minor);
|
|
INFO("System major : " << devProp.major);
|
|
INFO("agent prop name : " << devProp.name);
|
|
|
|
INFO("hip Device prop succeeded");
|
|
|
|
unsigned int wave_size = devProp.warpSize;
|
|
unsigned int num_waves_per_block = 2;
|
|
unsigned int num_threads_per_block = wave_size * num_waves_per_block;
|
|
unsigned int num_blocks = 2;
|
|
unsigned int NUM = num_threads_per_block * num_blocks;
|
|
|
|
unsigned i;
|
|
int errors;
|
|
|
|
hostOut32 = (unsigned int*)malloc(NUM * sizeof(unsigned int));
|
|
hostSrc032 = (unsigned int*)malloc(NUM * sizeof(unsigned int));
|
|
hostSrc132 = (unsigned int*)malloc(NUM * sizeof(unsigned int));
|
|
hostSrc232 = (unsigned int*)malloc(NUM * sizeof(unsigned int));
|
|
|
|
hostOut64 = (unsigned long long int*)malloc(NUM * sizeof(unsigned long long int));
|
|
hostSrc064 = (unsigned long long int*)malloc(NUM * sizeof(unsigned long long int));
|
|
hostSrc164 = (unsigned int*)malloc(NUM * sizeof(unsigned int));
|
|
hostSrc264 = (unsigned int*)malloc(NUM * sizeof(unsigned int));
|
|
|
|
// initialize the input data
|
|
std::random_device rd;
|
|
std::uniform_int_distribution<uint32_t> uint32_src0_dist;
|
|
std::uniform_int_distribution<uint32_t> uint32_src12_dist(0, 31);
|
|
std::uniform_int_distribution<uint64_t> uint64_src0_dist;
|
|
std::uniform_int_distribution<uint32_t> uint64_src12_dist(0, 63);
|
|
for (i = 0; i < NUM; i++) {
|
|
hostOut32[i] = 0;
|
|
hostSrc032[i] = uint32_src0_dist(rd);
|
|
hostSrc132[i] = uint32_src12_dist(rd);
|
|
hostSrc232[i] = uint32_src12_dist(rd);
|
|
if (hostSrc132[i] + hostSrc232[i] > 32) hostSrc232[i] = 32 - hostSrc132[i];
|
|
hostOut64[i] = 0;
|
|
hostSrc064[i] = uint64_src0_dist(rd);
|
|
hostSrc164[i] = uint64_src12_dist(rd);
|
|
hostSrc264[i] = uint64_src12_dist(rd);
|
|
}
|
|
|
|
HIP_CHECK(hipMalloc((void**)&deviceOut32, NUM * sizeof(unsigned int)));
|
|
HIP_CHECK(hipMalloc((void**)&deviceSrc032, NUM * sizeof(unsigned int)));
|
|
HIP_CHECK(hipMalloc((void**)&deviceSrc132, NUM * sizeof(unsigned int)));
|
|
HIP_CHECK(hipMalloc((void**)&deviceSrc232, NUM * sizeof(unsigned int)));
|
|
|
|
HIP_CHECK(hipMalloc((void**)&deviceOut64, NUM * sizeof(unsigned long long int)));
|
|
HIP_CHECK(hipMalloc((void**)&deviceSrc064, NUM * sizeof(unsigned long long int)));
|
|
HIP_CHECK(hipMalloc((void**)&deviceSrc164, NUM * sizeof(unsigned int)));
|
|
HIP_CHECK(hipMalloc((void**)&deviceSrc264, NUM * sizeof(unsigned int)));
|
|
|
|
HIP_CHECK(
|
|
hipMemcpy(deviceSrc032, hostSrc032, NUM * sizeof(unsigned int), hipMemcpyHostToDevice));
|
|
HIP_CHECK(
|
|
hipMemcpy(deviceSrc132, hostSrc132, NUM * sizeof(unsigned int), hipMemcpyHostToDevice));
|
|
HIP_CHECK(
|
|
hipMemcpy(deviceSrc232, hostSrc232, NUM * sizeof(unsigned int), hipMemcpyHostToDevice));
|
|
|
|
HIP_CHECK(hipMemcpy(deviceSrc064, hostSrc064, NUM * sizeof(unsigned long long int),
|
|
hipMemcpyHostToDevice));
|
|
HIP_CHECK(
|
|
hipMemcpy(deviceSrc164, hostSrc164, NUM * sizeof(unsigned int), hipMemcpyHostToDevice));
|
|
HIP_CHECK(
|
|
hipMemcpy(deviceSrc264, hostSrc264, NUM * sizeof(unsigned int), hipMemcpyHostToDevice));
|
|
|
|
|
|
hipLaunchKernelGGL(HIP_kernel, dim3(num_blocks), dim3(num_threads_per_block), 0, 0, deviceOut32,
|
|
deviceSrc032, deviceSrc132, deviceSrc232, deviceOut64, deviceSrc064,
|
|
deviceSrc164, deviceSrc264);
|
|
|
|
|
|
HIP_CHECK(hipMemcpy(hostOut32, deviceOut32, NUM * sizeof(unsigned int), hipMemcpyDeviceToHost));
|
|
HIP_CHECK(hipMemcpy(hostOut64, deviceOut64, NUM * sizeof(unsigned long long int),
|
|
hipMemcpyDeviceToHost));
|
|
|
|
// verify the results
|
|
errors = 0;
|
|
for (i = 0; i < NUM; i++) {
|
|
if (hostOut32[i] != bit_extract<uint32_t>(hostSrc032[i], hostSrc132[i], hostSrc232[i])) {
|
|
errors++;
|
|
INFO("device: " << hostOut32[i] << " host: "
|
|
<< bit_extract<uint32_t>(hostSrc032[i], hostSrc132[i], hostSrc232[i]) << " "
|
|
<< hostSrc032[i] << " " << hostSrc132[i] << " " << hostSrc232[i] << "\n");
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < NUM; i++) {
|
|
if (hostOut64[i] != bit_extract<uint64_t>(hostSrc064[i], hostSrc164[i], hostSrc264[i])) {
|
|
errors++;
|
|
INFO("device: " << hostOut64[i] << " host: "
|
|
<< bit_extract<uint64_t>(hostSrc064[i], hostSrc164[i], hostSrc264[i]) << " "
|
|
<< hostSrc064[i] << " " << hostSrc164[i] << " " << hostSrc264[i] << "\n");
|
|
}
|
|
}
|
|
|
|
HIP_CHECK(hipFree(deviceOut32));
|
|
HIP_CHECK(hipFree(deviceSrc032));
|
|
HIP_CHECK(hipFree(deviceSrc132));
|
|
HIP_CHECK(hipFree(deviceSrc232));
|
|
HIP_CHECK(hipFree(deviceOut64));
|
|
HIP_CHECK(hipFree(deviceSrc064));
|
|
HIP_CHECK(hipFree(deviceSrc164));
|
|
HIP_CHECK(hipFree(deviceSrc264));
|
|
|
|
free(hostOut32);
|
|
free(hostSrc032);
|
|
free(hostSrc132);
|
|
free(hostSrc232);
|
|
free(hostOut64);
|
|
free(hostSrc064);
|
|
free(hostSrc164);
|
|
free(hostSrc264);
|
|
|
|
REQUIRE(errors == 0);
|
|
}
|