mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
9 lines
248 B
C++
9 lines
248 B
C++
#include "caffe2/core/context_gpu.h"
|
|
#include "caffe2/operators/prepend_dim_op.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
REGISTER_CUDA_OPERATOR(PrependDim, PrependDimOp<CUDAContext>);
|
|
REGISTER_CUDA_OPERATOR(MergeDim, MergeDimOp<CUDAContext>);
|
|
|
|
} // namespace caffe2
|