forked from mindspore-Ecosystem/mindspore
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/**
|
|
* Copyright 2019-2020 Huawei Technologies Co., Ltd
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef LITE_MINDSPORE_LITE_C_OPS_L2_NORM_H_
|
|
#define LITE_MINDSPORE_LITE_C_OPS_L2_NORM_H_
|
|
|
|
#include <vector>
|
|
#include <set>
|
|
#include <cmath>
|
|
#include "ir/dtype/type_id.h"
|
|
#include "src/ops/primitive_c.h"
|
|
|
|
namespace mindspore {
|
|
namespace lite {
|
|
class L2Norm : public PrimitiveC {
|
|
public:
|
|
#ifdef PRIMITIVE_WRITEABLE
|
|
L2Norm() = default;
|
|
explicit L2Norm(schema::PrimitiveT *primitive) : PrimitiveC(primitive) {}
|
|
#else
|
|
explicit L2Norm(schema::Primitive *primitive) : PrimitiveC(primitive) {}
|
|
#endif
|
|
std::vector<int> GetAxis() const;
|
|
float GetEpsilon() const;
|
|
void SetAxis(const std::vector<int> &axis);
|
|
void SetEpsilon(float epsilon);
|
|
};
|
|
} // namespace lite
|
|
} // namespace mindspore
|
|
|
|
#endif // LITE_MINDSPORE_LITE_C_OPS_L2_NORM_H_
|