2 * Copyright (c) 2018 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 #ifndef __ONERT_BACKEND_CPU_OPS_FULLYCONNECTEDLAYER_H__
18 #define __ONERT_BACKEND_CPU_OPS_FULLYCONNECTEDLAYER_H__
20 #include <backend/IPortableTensor.h>
21 #include "../ExternalContext.h"
22 #include "OperationUtils.h"
24 #include <exec/IFunction.h>
43 class FullyConnectedLayer : public ::onert::exec::IFunction
46 FullyConnectedLayer();
47 ~FullyConnectedLayer();
50 void fullyConnectedFloat32();
52 void fullyConnectedQuant8();
54 void fullyConnectedHybrid();
56 void fullyConnectedSparseWeight();
58 void configure(const IPortableTensor *input, const IPortableTensor *weights,
59 const IPortableTensor *bias, ir::Activation activation, IPortableTensor *output,
60 const std::shared_ptr<ExternalContext> &external_context);
64 void prepare() override;
67 const IPortableTensor *_input;
68 const IPortableTensor *_weights;
69 const IPortableTensor *_bias;
70 IPortableTensor *_output;
72 ir::Activation _activation;
73 std::unique_ptr<nnfw::cker::FCTempArena> _temp_arena;
75 std::shared_ptr<ExternalContext> _external_context;
80 uint8_t *_cached_weights = nullptr; // weights to be cached and a key
81 bool _is_weights_freed = false; // is weights freed?
87 } // namespace backend
90 #endif // __ONERT_BACKEND_CPU_OPS_FULLYCONNECTEDLAYER_H__