mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Closes https://github.com/pytorch/pytorch/pull/8991 Add Cube and Cbrt Ops Reviewed By: houseroad Differential Revision: D8678848 fbshipit-source-id: 051dd475e45ad9f1d11a8b32ae3acd1f7459b930
35 lines
723 B
C++
35 lines
723 B
C++
#ifndef CAFFE2_OPERATORS_CUBE_OP_H_
|
|
#define CAFFE2_OPERATORS_CUBE_OP_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "caffe2/operators/elementwise_ops.h"
|
|
#include "caffe2/utils/math.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
template <class Context>
|
|
struct CubeFunctor {
|
|
template <typename T>
|
|
bool operator()(const int N, const T* X, T* Y, Context* context) const {
|
|
math::Cube<T, Context>(N, X, Y, context);
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template <class Context>
|
|
struct CubeGradientFunctor {
|
|
template <typename T>
|
|
bool Forward(
|
|
const std::vector<int>& dY_dims,
|
|
const std::vector<int>& X_dims,
|
|
const T* dY,
|
|
const T* X,
|
|
T* dX,
|
|
Context* context) const;
|
|
};
|
|
|
|
} // namespace caffe2
|
|
|
|
#endif // CAFFE2_OPERATORS_CUBE_OP_H_
|