17{
18 if (unaryDescriptor->
m_Operation != UnaryOperation::Exp)
19 {
20 throw armnn::Exception(
"ConvertExpOperator: Unsupported elementwise unary operation in descriptor.");
21 }
22
23 std::string inputName = std::string("input_");
24 std::string outputName = std::string("output0_");
26
27
28
29 if(layer != nullptr)
30 {
33 }
34
35 std::vector<TosaSerializationTensor*> tensors;
36 std::vector<TosaSerializationOperator*> operators;
37
38 float input_scale = inputs[0]->GetQuantizationScale();
39 float output_scale = outputs[0]->GetQuantizationScale();
40 int32_t input_zp = inputs[0]->GetQuantizationOffset();
41 int32_t output_zp = outputs[0]->GetQuantizationOffset();
42 DataType inputDType = inputs[0]->GetDataType();
43 if (inputDType == DataType::QAsymmS8 ||
44 inputDType == DataType::QSymmS8)
45 {
46 auto exp_func = [](float x) -> float { return std::exp(x); };
47 TosaTableAttribute attribute(
49 operators.push_back(new TosaSerializationOperator(tosa::Op_TABLE,
50 Attribute_TableAttribute,
51 &attribute,
52 {inputName},
53 {outputName}));
54 }
55 else if (inputDType == DataType::QSymmS16)
56 {
57 throw Exception(
"ConvertExpOperator() unsupported int 16 not implemented yet.");
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74 }
75 else if (inputDType == DataType::Signed32 ||
76 inputDType == DataType::Signed64)
77 {
79 "ConvertExpOperator() unsupported int 32. Only int 8 and int 16 quantized types are supported.");
80 }
81
82 else
83 {
84 operators.push_back(new TosaSerializationOperator(tosa::Op_EXP,
85 Attribute_NONE,
86 nullptr,
87 {inputName},
88 {outputName}));
89 }
90
91
92
93
94 if(inputName.find("input_") != std::string::npos)
95 {
98 tensors.push_back(new TosaSerializationTensor(inputName, inputShape0, inputDType0, {}));
99 }
100
102
103
104
105
106 DType outputDType0 =
ArmNNToDType(outputs[0]->GetDataType());
107
108 tensors.push_back(new TosaSerializationTensor(outputName, outputShape0, outputDType0, {}));
109
110
111
112 return new TosaSerializationBasicBlock(blockName,
114 operators,
115 tensors,
116 {inputName},
117 {outputName});
118}
std::string GenerateUniqueOutputName(const Layer &layer, uint32_t layerSlot=0)
const std::string mainName
DType ArmNNToDType(const DataType &type)
std::string GenerateUniqueInputName(const armnn::InputSlot &slot)
std::string GetUniqueTosaMappingID()
std::vector< int32_t > GetTosaTensorShape(const TensorShape &shape)
std::vector< int16_t > getTosaConst8bitTable(float input_scale, int32_t input_zp, float output_scale, int32_t output_zp, std::function< float(float)> func)
Base class for all ArmNN exceptions so that users can filter to just those.
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
UnaryOperation m_Operation
Specifies the elementwiseUnary operation to execute.