# Instructions for ```reduce_blockwise``` Example ## Docker script ```bash docker run \ -it \ --rm \ --privileged \ --group-add sudo \ -w /root/workspace \ -v ${PATH_TO_LOCAL_WORKSPACE}:/root/workspace \ rocm/tensorflow:rocm4.3.1-tf2.6-dev \ /bin/bash ``` ## Build ```reduce_blockwise``` ```bash mkdir build && cd build ``` ```bash # Need to specify target ID, example below is gfx908 cmake \ -D BUILD_DEV=OFF \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_CXX_FLAGS="-DCK_AMD_GPU_GFX908 --amdgpu-target=gfx908 -O3 " \ -D CMAKE_CXX_COMPILER=/opt/rocm/bin/hipcc \ -D CMAKE_PREFIX_PATH=/opt/rocm \ .. ``` ```bash make -j reduce_blockwise ``` ## Run ```reduce_blockwise``` ```bash # -D : input 4-d tensor lengths # -v : verification (0=no, 1=yes) #arg1: initialization (0=no init, 1=integer value, 2=decimal value) #arg2: run kernel # of times (>1) ./bin/reduce_blockwise -D 16,64,32,960 -v 1 1 10 ``` Result ``` launch_and_time_kernel: grid_dim {240, 1, 1}, block_dim {256, 1, 1} Warm up Start running 3 times... Perf: 0.23536 ms, 267.32 GB/s, DeviceReduceBlockWise<256,M_C4_S1,K_C64_S1,InSrcVectorDim_0_InSrcVectorSize_1_OutDstVectorSize_1> error: 0 max_diff: 0, 529, 529 root@dc-smc-18:/data/composable_kernel/Build3# bin/reduce_blockwise -D 16,64,32,960 -v 1 1 10 launch_and_time_kernel: grid_dim {240, 1, 1}, block_dim {256, 1, 1} Warm up Start running 10 times... Perf: 0.23392 ms, 268.966 GB/s, DeviceReduceBlockWise<256,M_C4_S1,K_C64_S1,InSrcVectorDim_0_InSrcVectorSize_1_OutDstVectorSize_1> error: 0 max_diff: 0, 528, 528 ```