mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/17085 clangr codemod Reviewed By: ezyang Differential Revision: D14078515 fbshipit-source-id: aaa48ae10892e3f47063f2133e026fea46f3240b
39 lines
923 B
C++
39 lines
923 B
C++
#ifndef INTEGRAL_IMAGE_OP_H_
|
|
#define INTEGRAL_IMAGE_OP_H_
|
|
|
|
#include "caffe2/core/context.h"
|
|
#include "caffe2/core/logging.h"
|
|
#include "caffe2/core/operator.h"
|
|
#include "caffe2/utils/math.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
template <typename T, class Context>
|
|
class IntegralImageOp final : public Operator<Context> {
|
|
public:
|
|
template <class... Args>
|
|
explicit IntegralImageOp(Args&&... args)
|
|
: Operator<Context>(std::forward<Args>(args)...) {}
|
|
USE_OPERATOR_CONTEXT_FUNCTIONS;
|
|
|
|
bool RunOnDevice() override;
|
|
};
|
|
|
|
template <typename T, class Context>
|
|
class IntegralImageGradientOp final : public Operator<Context> {
|
|
public:
|
|
template <class... Args>
|
|
explicit IntegralImageGradientOp(Args&&... args)
|
|
: Operator<Context>(std::forward<Args>(args)...) {}
|
|
USE_OPERATOR_CONTEXT_FUNCTIONS;
|
|
|
|
bool RunOnDevice() override;
|
|
|
|
protected:
|
|
Tensor row_pass_buffer_;
|
|
};
|
|
|
|
} // namespace caffe2
|
|
|
|
#endif // INTEGRAL_IMAGE_OP_H_
|