Program Listing for File custom_normalize.h

Return to documentation for file (include/converter/include/ops/custom_normalize.h)

#ifndef MINDSPORE_CORE_OPS_CUSTOM_NORMALIZE_H_
#define MINDSPORE_CORE_OPS_CUSTOM_NORMALIZE_H_
#include <memory>
#include <vector>

#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameCustomNormalize = "CustomNormalize";
class MIND_API CustomNormalize : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(CustomNormalize);
  CustomNormalize() : BaseOperator(kNameCustomNormalize) {}
  void Init() const {}
};

MIND_API abstract::AbstractBasePtr CustomNormalizeInfer(const abstract::AnalysisEnginePtr &,
                                                        const PrimitivePtr &primitive,
                                                        const std::vector<abstract::AbstractBasePtr> &input_args);
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_CUSTOM_NORMALIZE_H_