-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-13b.cpp
146 lines (105 loc) · 3.1 KB
/
example-13b.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
please note that the series of optmiztion technology is not in official document.
All the tests are based on AMD MI25 radeon instict and AMD ROCm.
*/
#include <assert.h>
#include <stdio.h>
#include <algorithm>
#include <stdlib.h>
#include<iostream>
#include "hip/hip_runtime.h"
#define HIP_ASSERT(x) (assert((x)==hipSuccess))
#define N 1024
#define C 1024
#define H 7
#define W 7
#define PADDING 3
#define H_NEW 13
#define W_NEW 13
#define NUM (N * C * H_NEW * W_NEW)
#define RW_PER_THREAD 16
__global__ void
test_kernel(hipLaunchParm lp,
float* __restrict__ bufA, float* __restrict__ bufB )
{
int hw = hipThreadIdx_x;
int cc = RW_PER_THREAD * hipBlockIdx_y;
int n = hipBlockIdx_z;
float org_data[16];
if (hw < (H_NEW * W_NEW))
{
int hh = hw / W_NEW - PADDING;
int ww = hw % W_NEW - PADDING;
for (int i = 0; i < 16; i++)
{
org_data[i] = 0.0f;
}
bool needFetching = (ww >=0) && (ww < W) && (hh >= 0) && (hh < H);
if (needFetching == true) {
int base = n * C * H * W + cc * H * W + hh * W + ww;
for (int i = 0; i < RW_PER_THREAD; i++)
{
org_data[i] = bufA[base + i * H * W];
}
}
int base = n * C * H_NEW * W_NEW + cc * H_NEW * W_NEW + hw;
for (int i = 0; i < RW_PER_THREAD; i++)
{
bufB[base + i * H_NEW * W_NEW] = org_data[i];
}
}
}
using namespace std;
int main() {
float* hostA;
float* hostB;
float* deviceA;
float* deviceB;
hipDeviceProp_t devProp;
hipGetDeviceProperties(&devProp, 0);
cout << " System minor " << devProp.minor << endl;
cout << " System major " << devProp.major << endl;
cout << " agent prop name " << devProp.name << endl;
cout << "hip Device prop succeeded " << endl;
hipEvent_t start, stop;
hipEventCreate(&start);
hipEventCreate(&stop);
float eventMs = 1.0f;
int i;
int errors;
hostA = (float*)malloc(NUM * sizeof(float));
hostB = (float*)malloc(NUM * sizeof(float));
float* p;
p = hostA;
for (int i = 0; i < NUM; i++)
{
p[i] = float(i);
}
HIP_ASSERT(hipMalloc((void**)& deviceA, NUM * sizeof(float)));
HIP_ASSERT(hipMalloc((void**)& deviceB, NUM * sizeof(float)));
HIP_ASSERT(hipMemcpy(deviceA, hostA, NUM * sizeof(float), hipMemcpyHostToDevice));
hipLaunchKernel(test_kernel,
dim3(1, 1, 1),
dim3(64, 1, 1),
0, 0,
deviceA, deviceB);
{
hipEventRecord(start, NULL);
hipLaunchKernel(test_kernel,
dim3(1, C/RW_PER_THREAD, N),
dim3(256, 1, 1),
0, 0,
deviceA, deviceB);
hipEventRecord(stop, NULL);
hipEventSynchronize(stop);
hipEventElapsedTime(&eventMs, start, stop);
printf("Read/Write [%d] Channels per thread: elapsed time:%f\n", (int)RW_PER_THREAD, eventMs);
double bandwidth = (double)N * (double)C * (double)H_NEW * (double)W_NEW * sizeof(float) * 2 /1024/1024/1024 / (eventMs / 1000.0);
printf("Read/Write [%d] Channels per thread: ==> Estimated Bandwidth %d GB/s\n", (int)RW_PER_THREAD, (int)bandwidth);
}
HIP_ASSERT(hipFree(deviceA));
HIP_ASSERT(hipFree(deviceB));
free(hostA);
free(hostB);
return errors;
}