18 if (unaryDescriptor->
m_Operation != UnaryOperation::Exp)
20 throw armnn::Exception(
"ConvertExpOperator: Unsupported elementwise unary operation in descriptor.");
23 std::string inputName = std::string(
"input_");
24 std::string outputName = std::string(
"output0_");
35 std::vector<TosaSerializationTensor*> tensors;
36 std::vector<TosaSerializationOperator*> operators;
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)
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,
55 else if (inputDType == DataType::QSymmS16)
57 throw Exception(
"ConvertExpOperator() unsupported int 16 not implemented yet.");
75 else if (inputDType == DataType::Signed32 ||
76 inputDType == DataType::Signed64)
79 "ConvertExpOperator() unsupported int 32. Only int 8 and int 16 quantized types are supported.");
84 operators.push_back(
new TosaSerializationOperator(tosa::Op_EXP,
94 if(inputName.find(
"input_") != std::string::npos)
98 tensors.push_back(
new TosaSerializationTensor(inputName, inputShape0, inputDType0, {}));
106 DType outputDType0 =
ArmNNToDType(outputs[0]->GetDataType());
108 tensors.push_back(
new TosaSerializationTensor(outputName, outputShape0, outputDType0, {}));
112 return new TosaSerializationBasicBlock(blockName,
std::string GenerateUniqueOutputName(const Layer &layer, uint32_t layerSlot=0)
const std::string mainName
DType ArmNNToDType(const DataType &type)
std::vector< int32_t > GetTosaTensorShape(const TensorShape &shape)
std::string GenerateUniqueInputName(const armnn::InputSlot &slot)
std::string GetUniqueTosaMappingID()
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.