diff options
Diffstat (limited to 'caffe2/utils/math/broadcast.h')
-rw-r--r-- | caffe2/utils/math/broadcast.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/caffe2/utils/math/broadcast.h b/caffe2/utils/math/broadcast.h new file mode 100644 index 0000000000..67e37d1bd9 --- /dev/null +++ b/caffe2/utils/math/broadcast.h @@ -0,0 +1,24 @@ +#ifndef CAFFE2_UTILS_MATH_BROADCAST_H_ +#define CAFFE2_UTILS_MATH_BROADCAST_H_ + +#include "caffe2/core/common.h" +#include "caffe2/core/types.h" + +namespace caffe2 { +namespace math { + +template <typename T, class Context, StorageOrder kOrder> +CAFFE2_API void AffineChannel( + const int N, + const int C, + const int HxW, + const T* X, + const T* scale, + const T* bias, + T* Y, + Context* context); + +} // namespace math +} // namespace caffe2 + +#endif // CAFFE2_UTILS_MATH_BROADCAST_H_ |