110 lines
2.9 KiB
C++
110 lines
2.9 KiB
C++
|
#include "convolution.h"
|
||
|
#include <mpi.h>
|
||
|
#include <omp.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
static float *input, *output, *filter;
|
||
|
static int N, C, H, W;
|
||
|
static int K, R, S;
|
||
|
static int OH, OW;
|
||
|
static int pad;
|
||
|
static int dilation;
|
||
|
static int stride;
|
||
|
static int mpi_rank, mpi_world_size;
|
||
|
|
||
|
extern void alloc_tensor(float **t, int D0, int D1, int D2, int D3);
|
||
|
|
||
|
void convolution(
|
||
|
float *_input, float *_output, float *_filter,
|
||
|
int _N, int _C, int _H, int _W,
|
||
|
int _K, int _R, int _S,
|
||
|
int _pad, int _dilation, int _stride) {
|
||
|
|
||
|
input = _input;
|
||
|
output = _output;
|
||
|
filter = _filter;
|
||
|
|
||
|
OH = (H + 2 * pad - dilation * (R - 1) - 1) / stride + 1;
|
||
|
OW = (W + 2 * pad - dilation * (S - 1) - 1) / stride + 1;
|
||
|
|
||
|
MPI_Status status;
|
||
|
|
||
|
int is[mpi_world_size], ie[mpi_world_size];
|
||
|
int count;
|
||
|
|
||
|
for (int i = 0; i < mpi_world_size; i++) {
|
||
|
is[i] = N / mpi_world_size * i;
|
||
|
ie[i] = N / mpi_world_size * (i + 1);
|
||
|
}
|
||
|
|
||
|
ie[mpi_world_size - 1] = N;
|
||
|
|
||
|
count = ie[mpi_rank] - is[mpi_rank];
|
||
|
|
||
|
if (mpi_rank == 0) {
|
||
|
for (int i = 1; i < mpi_world_size; i++) {
|
||
|
MPI_Send(&input[is[i] * C * H * W], (ie[i] - is[i]) * C * H * W, MPI_FLOAT, i, 0, MPI_COMM_WORLD);
|
||
|
}
|
||
|
} else {
|
||
|
alloc_tensor(&input, count, C, H, W);
|
||
|
alloc_tensor(&output, count, K, OH, OW);
|
||
|
alloc_tensor(&filter, K, C, R, S);
|
||
|
MPI_Recv(input, count * C * H * W, MPI_FLOAT, 0, 0, MPI_COMM_WORLD, &status);
|
||
|
}
|
||
|
|
||
|
MPI_Bcast(filter, K * C * R * S, MPI_FLOAT, 0, MPI_COMM_WORLD);
|
||
|
|
||
|
#pragma omp parallel for collapse(2) num_threads(80) schedule(dynamic)
|
||
|
for (int n = 0; n < count; ++n) {
|
||
|
for (int k = 0; k < K; ++k) {
|
||
|
for (int oh = 0; oh < OH; ++oh) {
|
||
|
for (int ow = 0; ow < OW; ++ow) {
|
||
|
float o = 0.f;
|
||
|
for (int c = 0; c < C; ++c) {
|
||
|
for (int r = 0; r < R; ++r) {
|
||
|
int h = oh * stride - pad + r * dilation;
|
||
|
for (int s = 0; s < S; ++s) {
|
||
|
int w = ow * stride - pad + s * dilation;
|
||
|
if (h < 0 || h >= H || w < 0 || w >= W) continue;
|
||
|
float i = input[n * C * H * W + c * H * W + h * W + w];
|
||
|
float f = filter[k * C * R * S + c * R * S + r * S + s];
|
||
|
o += i * f;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
output[n * K * OH * OW + k * OH * OW + oh * OW + ow] = o;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (mpi_rank == 0) {
|
||
|
for (int i = 1; i < mpi_world_size; i++) {
|
||
|
MPI_Recv(&output[is[i] * K * OH * OW], (ie[i] - is[i]) * K * OH * OW, MPI_FLOAT, 1, 0, MPI_COMM_WORLD, &status);
|
||
|
}
|
||
|
}
|
||
|
else {
|
||
|
MPI_Send(output, count * K * OH * OW, MPI_FLOAT, 0, 0, MPI_COMM_WORLD);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void convolution_init(
|
||
|
int _N, int _C, int _H, int _W,
|
||
|
int _K, int _R, int _S,
|
||
|
int _pad, int _dilation, int _stride) {
|
||
|
N = _N; C = _C; H = _H; W = _W;
|
||
|
K = _K; R = _R; S = _S;
|
||
|
pad = _pad;
|
||
|
dilation = _dilation;
|
||
|
stride = _stride;
|
||
|
|
||
|
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
|
||
|
MPI_Comm_size(MPI_COMM_WORLD, &mpi_world_size);
|
||
|
}
|
||
|
|
||
|
void convolution_final(
|
||
|
int _N, int _C, int _H, int _W,
|
||
|
int _K, int _R, int _S,
|
||
|
int _pad, int _dilation, int _stride) {
|
||
|
}
|