Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

memcpy 2d example #6

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
13 changes: 13 additions & 0 deletions memcpy_2d_example_gfx1030/build_clanghipcc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

KSRC=memcpy_2d_example_gfx1030.s
KOUT=memcpy_2d_example_gfx1030.hsaco
SRC=main.cpp
TARGET=out.exe

# pre-delete the previous KOUT
rm -rf $KOUT
/opt/rocm/llvm/bin/clang++ -x assembler -target amdgcn--amdhsa -mcpu=gfx1030 $KSRC -o $KOUT

rm -rf $TARGET
/opt/rocm/hip/bin/hipcc $SRC -mcpu=gfx1030 -o $TARGET
46 changes: 46 additions & 0 deletions memcpy_2d_example_gfx1030/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#ifndef CONFIG
#define CONFIG

#include <hip/hip_runtime.h>

#define HIP_CALL(call) do{ \
hipError_t err = call; \
if(err != hipSuccess){ \
printf("[hiperror](%d) fail to call %s",(int)err,#call); \
exit(0); \
} \
} while(0)

template <typename T>
class Matrix_2d
{
public:
int rows;
int cols;
int padding;
int length;
bool type; //Host: 1; Device: 0
T *data;
public:
Matrix_2d(): rows(0), cols(0), padding(0), length(0), type(0), data(nullptr) {}
Matrix_2d(int r, int c, int p, bool t): rows(r), cols(c), padding(p), type(t), length(r * (c + p)), data(new T[r * (c + p)]) {}
~Matrix_2d() {
if (data != nullptr && type) {
delete [] data;
}
}
void initMem() {
if (!data)
data = new T[rows * (cols + padding)];
}
};

typedef struct Result
{
bool isValid;
int bdx;
int gdx;
float gbps;
} Result;

#endif
288 changes: 288 additions & 0 deletions memcpy_2d_example_gfx1030/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,288 @@
#include <iostream>
#include <string>
#include <unordered_map>
#include <random>
#include <map>
#include <bits/stdc++.h>
#include <assert.h>
#include <stdio.h>
#include <unistd.h>
#include <getopt.h>

#include "config.h"

#define HSACO "memcpy_2d_example_gfx1030.hsaco"
#define HSA_KERNEL "memcpy_2d_example_gfx1030"

#define ABS(x) ((x) > 0 ? (x) : -1 * (x))

template<typename T>
void rand_vec(Matrix_2d<T> &matrix)
{
static std::random_device rd; // seed
static std::mt19937 mt(rd());
static std::uniform_real_distribution<T> dist(-10.0, 10.0);

for (size_t i = 0; i < matrix.rows; ++i)
for (size_t j = 0; j < matrix.cols + matrix.padding; ++j) {
if (j >= matrix.cols)
continue;
int offset = i * (matrix.cols + matrix.padding) + j;
matrix.data[offset] = dist(mt);
}
}

template <typename T>
static inline bool valid_vector(const Matrix_2d<T> &host_in, const Matrix_2d<T> &host_out, double nrms = 1e-6)
{
double s0 = 0.0;
double s1 = 0.0;
int pp_err = 0;

int rows = host_in.rows;
int cols = host_in.cols;
int padding = host_in.padding;

for (int i = 0; i < rows; ++i) {
for (int j = 0; j < cols + padding; ++j) {
if (j >= cols)
continue;
double ri = (double)host_in.data[i * (cols + padding) + j];
double pi = (double)host_out.data[i * (cols + padding) + j];
double d = ri - pi;
double dd = d * d;
double rr = 2.0 * ri * ri;
s0 += dd;
s1 += rr;
double delta = ABS(ri - pi) / ri;

if(delta > 3e-5) {
if(pp_err < 100)
printf("diff at %4d, ref:%lf, pred:%lf(0x%08x), d:%lf\n", i, ri, pi,((uint32_t *)host_out.data)[i], delta);
pp_err++;
}
}
}
//printf("nrms:%lf, s0:%lf, s1:%lf\n",sqrt(s0/s1),s0,s1);
return (sqrt (s0 / s1) < nrms) && (pp_err==0);
}


void print_usage(FILE* stream, int exit_code)
{
fprintf(stream,
"Usage: \n");
fprintf(stream,
" -h --help Display this usage information.\n"
" -r --rows Rows.\n"
" -c --cols Cols.\n"
" -p --padding Padding.\n\n");
fprintf(stream,
"Note: If no params are provided, The benchmark will run several typical cases.\n");
exit (exit_code);
}

void run_kernel(const int &rows, const int &cols, const int &padding, Result &res){
// judge cols legality
assert(cols % (256 * 8) == 0 && "[!]Only supports cols which is multiples of 2048(2K)");

Matrix_2d<float> matrix_host_in(rows, cols, padding, 1);
Matrix_2d<float> matrix_host_out(rows, cols, padding, 1);
Matrix_2d<float> matrix_dev_in(rows, cols, padding, 0);
Matrix_2d<float> matrix_dev_out(rows, cols, padding, 0);

// kernel preparation
hipModule_t module;
hipFunction_t kernel_func;
hipEvent_t evt_00, evt_11;
HIP_CALL(hipSetDevice(0));

HIP_CALL(hipModuleLoad(&module, HSACO));
HIP_CALL(hipModuleGetFunction(&kernel_func, module, HSA_KERNEL));

int num_cu;
int gcn_arch;
{
hipDeviceProp_t dev_prop;
hipDevice_t dev;
HIP_CALL(hipGetDevice(&dev));
HIP_CALL(hipGetDeviceProperties(&dev_prop, dev));
num_cu = dev_prop.multiProcessorCount;
gcn_arch = dev_prop.gcnArch;
if (gcn_arch >= 1000)
num_cu *= 2;
}

int total_loop = 4;
int warm_ups = 2;

// initial blockDim, gridDim
int bdx = 256;
int gdx = matrix_host_in.cols / (8 * bdx);
HIP_CALL(hipMalloc(&matrix_dev_in.data, sizeof(float) * matrix_dev_in.length));
HIP_CALL(hipMalloc(&matrix_dev_out.data, sizeof(float) * matrix_dev_out.length));

// initial host in data
rand_vec(matrix_host_in);

// memcpy data from host to device
HIP_CALL(hipMemcpy(matrix_dev_in.data, matrix_host_in.data, sizeof(float) * matrix_dev_in.length, hipMemcpyHostToDevice));
// printf("Memcpy: input: %p, output: %p, floats: %d\n",matrix_dev_in.data, matrix_dev_out.data, matrix_dev_in.length);

struct __attribute__((packed))
{
float *input;
float *output;
int rows;
int gdx;
int bdx;
int padding;
} args;

size_t arg_size = sizeof(args);
args.input = matrix_dev_in.data;
args.output = matrix_dev_out.data;
args.rows = rows;
args.gdx = gdx;
args.bdx = bdx;
args.padding = padding;

void* config_kernel[] = {HIP_LAUNCH_PARAM_BUFFER_POINTER, &args, HIP_LAUNCH_PARAM_BUFFER_SIZE, &arg_size, HIP_LAUNCH_PARAM_END};

// warm up kernel
for (int i = 0; i < warm_ups; i++)
HIP_CALL(hipModuleLaunchKernel(kernel_func, gdx, 1, 1, bdx, 1, 1, 0, 0, NULL, (void**)&config_kernel));

hipEventCreate(&evt_00);
hipEventCreate(&evt_11);
hipDeviceSynchronize();
hipEventRecord(evt_00, NULL);

// launch kernel
for(int i = 0; i < total_loop; i++)
HIP_CALL(hipModuleLaunchKernel(kernel_func, gdx, 1, 1, bdx, 1, 1, 0, 0, NULL, (void**)&config_kernel));

float elapsed_ms;
hipEventRecord(evt_11, NULL);
hipEventSynchronize(evt_11);
hipDeviceSynchronize();
hipEventElapsedTime(&elapsed_ms, evt_00, evt_11);
hipEventDestroy(evt_00);
hipEventDestroy(evt_11);

HIP_CALL(hipMemcpy(matrix_host_out.data, matrix_dev_out.data, sizeof(float) * matrix_host_out.length, hipMemcpyDeviceToHost));

// verification
bool isValid = valid_vector(matrix_host_in, matrix_host_out);
res.isValid = isValid;

// evaluation
float time_per_loop_ms = elapsed_ms / total_loop;
float gbps = (matrix_host_out.rows * matrix_host_out.cols) * 2 * sizeof(float) / time_per_loop_ms / 1000 / 1000;

res.gbps = gbps;
res.gdx = gdx;
res.bdx = bdx;

hipFree(matrix_dev_in.data);
hipFree(matrix_dev_out.data);
}

/* set rows, cols, padding */
std::vector<std::vector<int>> default_setting = {
{1, 2048, 0}, // 8Kb, no padding
{2, 131072, 0}, // 1Mb, no padding
{256, 131072, 0}, // 128Mb, no padding
{512, 262144, 0}, // 512Mb, no padding
{1024, 262144, 0}, // 1G, no padding

{1, 2048, 5120}, // 8kb, add padding
{2, 131072, 5120}, // 1Mb, no padding
{256, 131072, 5120}, // 128Mb, add padding
{512, 262144, 5120}, // 512Mb, add padding
{1024, 262144, 5120}, // 1G, add padding
};


int main(int argc, char **argv)
{
int rows;
int cols;
int padding;

if (argc <= 1) {
std::cout << " No Input Parameters! Running Benchmark With Default Settings " << std::endl;
std::cout << " ---- MEMCPY 2D EXAMPLE BENCHMARK ---- " << std::endl;

Result res;

for (int i = 0; i < default_setting.size(); ++i) {
rows = default_setting[i][0];
cols = default_setting[i][1];
padding = default_setting[i][2];

run_kernel(rows, cols, padding, res);

int length = rows * cols * sizeof(float);

if (length >= 1024 && length < 1024 * 1024)
std::cout << " Input Size: " << length / 1024 << " Kb" << std::endl;
else if (length >= 1024 * 1024 && length < 1024 * 1024 * 1024)
std::cout << " Input Size: " << length / 1024 / 1024 << " Mb" << std::endl;
else if (length >= 1024 * 1024 * 1024)
std::cout << " Input Size: " << length / 1024 / 1024 / 1024 <<" Gb" << std::endl;

std::cout << " Settings: rows: " << rows << '\t' << "cols: " << cols << '\t' << "padding: " << padding << std::endl;
std::cout << " gdx: " << res.gdx << '\t' << "bdx: " << res.bdx << std::endl;
if (res.isValid)
std::cout << " Result: " << "Is Valid";
else
std::cout << " Result: " << "Not Valid";
std::cout << " gbps: " << res.gbps << std::endl;
std::cout << std::endl;
}

std::cout << " ---- END OF BENCHMARK ---- " << std::endl;
}

else {
const char *optString = "r::c::p::";
const struct option long_options[] =
{ {"help", 0, NULL, 'h'},
{"rows", optional_argument, NULL, 'r'},
{"cols", optional_argument, NULL, 'c'},
{"padding", optional_argument, NULL,'p'},
{NULL, 0, NULL, 0}
};

int ch;

while((ch = getopt_long(argc, argv, optString, long_options, NULL)) != -1){
switch(ch) {
case 'h': print_usage(stdout, 0); break;
case 'r': rows = atoi(optarg); break;
case 'c': cols = atoi(optarg); break;
case 'p': padding = atoi(optarg); break;
case -1: break;
default: abort();
}
}

Result res;
run_kernel(rows, cols, padding, res);

std::cout << std::endl;
std::cout << " ---- MEMCPY 2D EXAMPLE BENCHMARK ---- " << std::endl;
std::cout << " Input Size: " << rows * cols * sizeof(float) <<" bytes" << std::endl;
std::cout << " Settings: rows: " << rows << '\t' << "cols: " << cols << '\t' << "padding: " << padding << std::endl;
std::cout << " gdx: " << res.gdx << '\t' << "bdx: " << res.bdx << std::endl;
if (res.isValid)
std::cout << " Result: " << "Is Valid";
else
std::cout << " Result: " << "Not Valid";
std::cout << " gbps: " << res.gbps << std::endl;
std::cout << " ---- END OF BENCHMARK ---- " << std::endl;
}

return 0;
}
Loading