ONE - On-device Neural Engine
Loading...
Searching...
No Matches
ReLU6.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Samsung Electronics Co., Ltd. All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef __NNFW_CKER_TRAIN_OPERATION_RELU6_H__
18#define __NNFW_CKER_TRAIN_OPERATION_RELU6_H__
19
20#include "cker/Shape.h"
21#include "cker/eigen/Utils.h"
22#include <Eigen/Core>
23
24namespace nnfw
25{
26namespace cker
27{
28namespace train
29{
30
31inline void ReLU6Grad(const Shape &output_shape, const float *output_data,
32 const Shape &incoming_shape, const float *incoming_data,
33 const Shape &grad_shape, float *grad_data)
34{
35 const auto output_map = MapAsVector(output_data, output_shape);
36 const auto incoming_map = MapAsVector(incoming_data, incoming_shape);
37 auto grad_map = MapAsVector(grad_data, grad_shape);
38
39 if (output_shape != incoming_shape || output_shape != grad_shape)
40 throw std::runtime_error{"cker::ReLU6Grad: Unsupported shape"};
41
42 grad_map.array() =
43 incoming_map.array() *
44 (0.0f < output_map.array() && output_map.array() < 6.0f).template cast<float>();
45}
46
47} // namespace train
48} // namespace cker
49} // namespace nnfw
50
51#endif // __NNFW_CKER_TRAIN_OPERATION_RELU6_H__
const luci_interpreter::RuntimeShape output_shape
void ReLU6Grad(const Shape &output_shape, const float *output_data, const Shape &incoming_shape, const float *incoming_data, const Shape &grad_shape, float *grad_data)
Definition ReLU6.h:31
VectorMap< Scalar > MapAsVector(Scalar *data, const Shape &shape)
Definition Utils.h:43
Definition topk_v2.h:30