ONE - On-device Neural Engine
Loading...
Searching...
No Matches
DepthwiseConv2D.cpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 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#include "DepthwiseConv2D.h"
18
19#include "Convert.h"
20
21namespace tflchef
22{
23
24void TFliteOpDepthwiseConv2D::filler(const tflite::Operator *op, TFliteImport *import,
25 tflchef::ModelRecipe *model_recipe) const
26{
27 const std::vector<int32_t> &inputs = as_index_vector(op->inputs());
28
29 bool hasBias = (inputs.size() == 3);
30 assert(inputs.size() == 2 || hasBias);
31
32 import->set_tensor_filler(inputs.at(1)); // kernel
33 if (hasBias)
34 import->set_tensor_filler(inputs.at(2)); // bias
35}
36
38{
39 tflchef::Operation *operation = ctx->chefop;
40 const tflite::Operator *op = ctx->tflop;
41
42 auto op_params = op->builtin_options_as_DepthwiseConv2DOptions();
43 assert(op_params != nullptr);
44
45 operation->set_type("DepthwiseConv2D");
46
47 auto op_options = operation->mutable_depthwiseconv2d_options();
48
49 op_options->set_activation(as_tflchef_activation(op_params->fused_activation_function()));
50 op_options->set_stride_h(op_params->stride_h());
51 op_options->set_stride_w(op_params->stride_w());
52 op_options->set_depth_multiplier(op_params->depth_multiplier());
53 op_options->set_dilation_w_factor(op_params->dilation_w_factor());
54 op_options->set_dilation_h_factor(op_params->dilation_h_factor());
55 op_options->set_padding(as_tflchef_padding(op_params->padding()));
56
57 return operation;
58}
59
60} // namespace tflchef
Loads TF lite file and provides helpers to access attributes.
void filler(const tflite::Operator *op, TFliteImport *import, tflchef::ModelRecipe *model_recipe) const override
tflchef::Operation * build(RecipeChefContext *ctx) const override
tflchef::Padding as_tflchef_padding(const tflite::Padding padding)
Definition Convert.cpp:71
std::vector< T > as_index_vector(const flatbuffers::Vector< T > *flat_array)
Definition Convert.h:47
tflchef::Activation as_tflchef_activation(const tflite::ActivationFunctionType type)
Definition Convert.cpp:50
tflchef::Operation * chefop
const tflite::Operator * tflop