52e320f396
Change-Id: I4d99009e1199811d417becf1e1b934ec4d4e30be
101 строка
3.6 KiB
C++
101 строка
3.6 KiB
C++
/*
|
|
Copyright (c) 2015-2016 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.
|
|
*/
|
|
|
|
/* HIT_START
|
|
* BUILD: %t %s ../test_common.cpp NVCC_OPTIONS --Wno-deprecated-declarations
|
|
* RUN: %t
|
|
* HIT_END
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <iostream>
|
|
|
|
#include <hip/hip_runtime.h>
|
|
#include <hip/device_functions.h>
|
|
#define HIP_ASSERT(x) (assert((x) == hipSuccess))
|
|
|
|
__global__ void warpvote(int* device_any, int* device_all,
|
|
int Num_Warps_per_Block, int pshift) {
|
|
int tid = threadIdx.x + blockIdx.x * blockDim.x;
|
|
device_any[threadIdx.x >> pshift] = __any(tid - 77);
|
|
device_all[threadIdx.x >> pshift] = __all(tid - 77);
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
int warpSize, pshift;
|
|
hipDeviceProp_t devProp;
|
|
hipGetDeviceProperties(&devProp, 0);
|
|
warpSize = devProp.warpSize;
|
|
|
|
int w = warpSize;
|
|
pshift = 0;
|
|
while (w >>= 1) ++pshift;
|
|
|
|
printf("warpSize=%d pshift=%d\n", warpSize, pshift);
|
|
|
|
|
|
int anycount = 0;
|
|
int allcount = 0;
|
|
int Num_Threads_per_Block = 1024;
|
|
int Num_Blocks_per_Grid = 1;
|
|
int Num_Warps_per_Block = Num_Threads_per_Block / warpSize;
|
|
int Num_Warps_per_Grid = (Num_Threads_per_Block * Num_Blocks_per_Grid) / warpSize;
|
|
|
|
int* host_any = (int*)malloc(Num_Warps_per_Grid * sizeof(int));
|
|
int* host_all = (int*)malloc(Num_Warps_per_Grid * sizeof(int));
|
|
int* device_any;
|
|
int* device_all;
|
|
HIP_ASSERT(hipMalloc((void**)&device_any, Num_Warps_per_Grid * sizeof(int)));
|
|
HIP_ASSERT(hipMalloc((void**)&device_all, Num_Warps_per_Grid * sizeof(int)));
|
|
for (int i = 0; i < Num_Warps_per_Grid; i++) {
|
|
host_any[i] = 0;
|
|
host_all[i] = 0;
|
|
}
|
|
HIP_ASSERT(hipMemcpy(device_any, host_any, sizeof(int), hipMemcpyHostToDevice));
|
|
HIP_ASSERT(hipMemcpy(device_all, host_all, sizeof(int), hipMemcpyHostToDevice));
|
|
|
|
hipLaunchKernelGGL(warpvote, dim3(Num_Blocks_per_Grid), dim3(Num_Threads_per_Block), 0, 0,
|
|
device_any, device_all, Num_Warps_per_Block, pshift);
|
|
|
|
|
|
HIP_ASSERT(
|
|
hipMemcpy(host_any, device_any, Num_Warps_per_Grid * sizeof(int), hipMemcpyDeviceToHost));
|
|
HIP_ASSERT(
|
|
hipMemcpy(host_all, device_all, Num_Warps_per_Grid * sizeof(int), hipMemcpyDeviceToHost));
|
|
for (int i = 0; i < Num_Warps_per_Grid; i++) {
|
|
printf("warp no. %d __any = %d \n", i, host_any[i]);
|
|
printf("warp no. %d __all = %d \n", i, host_all[i]);
|
|
|
|
if (host_all[i] != 1) ++allcount;
|
|
if (host_any[i] != 1) ++anycount;
|
|
}
|
|
|
|
if (anycount == 0 && allcount == 1)
|
|
printf("PASSED\n");
|
|
else {
|
|
printf("FAILED\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|