2 * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include "LogSoftMaxLayer.h"
19 #include "OperationUtils.h"
21 #include <cker/operation/LogSoftMax.h>
32 LogSoftMaxLayer::LogSoftMaxLayer() : _input(nullptr), _output(nullptr), _beta(0.0), _axis(0)
37 void LogSoftMaxLayer::logsoftmaxFloat32()
39 nnfw::cker::SoftmaxParams op_params;
40 op_params.beta = _beta;
41 op_params.axis = _axis;
42 nnfw::cker::LogSoftmax(op_params, getTensorShape(_input),
43 reinterpret_cast<const float *>(_input->buffer()), getTensorShape(_output),
44 reinterpret_cast<float *>(_output->buffer()));
47 void LogSoftMaxLayer::logsoftmaxQuant8()
52 void LogSoftMaxLayer::configure(const IPortableTensor *input, const float beta, const int axis,
53 IPortableTensor *output)
61 void LogSoftMaxLayer::run()
63 if (_input->data_type() == OperandType::FLOAT32)
67 else if (_input->data_type() == OperandType::QUANT_UINT8_ASYMM)
69 throw std::runtime_error{"LogSoftmax : NYI"};
73 throw std::runtime_error{"LogSoftmax : unsupported data type"};
79 } // namespace backend