mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Summary: Since caffe2 and torch have been consolidated, CAFFE2_API should be merged with TORCH_API. Addresses a TODO. Manually edited some references of the removed `CAFFE2_API`: * `CONTRIBUTING.md` * `caffe2/proto/CMakeLists.txt` * `cmake/ProtoBuf.cmake` * `c10/macros/Export.h` * `torch/csrc/WindowsTorchApiMacro.h` Pull Request resolved: https://github.com/pytorch/pytorch/pull/49496 Reviewed By: malfet, samestep Differential Revision: D25600726 Pulled By: janeyx99 fbshipit-source-id: 7e068d959e397ac183c097d7e9a9afeca5ddd782
34 lines
834 B
C++
34 lines
834 B
C++
#pragma once
|
|
|
|
#include "caffe2/core/operator.h"
|
|
#include "caffe2/utils/math.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
template <typename T, class Context>
|
|
class TORCH_API SparseNormalizeOp final : public Operator<Context> {
|
|
public:
|
|
USE_OPERATOR_CONTEXT_FUNCTIONS;
|
|
template <class... Args>
|
|
explicit SparseNormalizeOp(Args&&... args)
|
|
: Operator<Context>(std::forward<Args>(args)...),
|
|
use_max_norm_(
|
|
this->template GetSingleArgument<bool>("use_max_norm", true)),
|
|
norm_(this->template GetSingleArgument<float>("norm", 1.0)) {
|
|
CAFFE_ENFORCE_GE(norm_, 0, "norm should be bigger than 0");
|
|
}
|
|
|
|
bool RunOnDevice() override;
|
|
|
|
template <typename SIndex>
|
|
bool DoRunWithType();
|
|
|
|
protected:
|
|
bool use_max_norm_;
|
|
float norm_;
|
|
INPUT_TAGS(PARAM, INDICES);
|
|
OUTPUT_TAGS(OUTPUT_PARAM);
|
|
};
|
|
|
|
} // namespace caffe2
|