mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
10 lines
217 B
C++
10 lines
217 B
C++
#include "caffe2/core/context_gpu.h"
|
|
#include "caffe2/operators/reshape_op.h"
|
|
#include "caffe2/utils/math.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
REGISTER_CUDA_OPERATOR(Reshape, ReshapeOp<float, CUDAContext>);
|
|
|
|
} // namespace caffe2
|