Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ParseSwish.cxx
Go to the documentation of this file.
3#include "onnx.hxx"
4
5namespace TMVA {
6namespace Experimental {
7namespace SOFIE {
8
11
12 auto input_name = nodeproto.input(0);
13 if (parser.IsRegisteredTensorType(input_name)) {
14 input_type = parser.GetTensorType(input_name);
15 } else {
16 throw std::runtime_error("TMVA::SOFIE ONNX Parser Swish op has input tensor" + input_name +
17 " but its type is not yet registered");
18 }
19
20 std::unique_ptr<ROperator> op;
21
22 // alpha attribute for Swish
23 float attr_alpha = 1;
24
25 for (int_t i = 0; i < nodeproto.attribute_size(); i++) {
26 std::string attribute_name = nodeproto.attribute(i).name();
27 if (attribute_name == "alpha")
28 attr_alpha = nodeproto.attribute(i).f();
29 }
30 // ROperator_Swish implements alpha = 1 (x * sigmoid(x)); reject other values
31 if (attr_alpha != 1.0) {
32 throw std::runtime_error("TMVA::SOFIE - Unsupported - Operator Swish does not yet support alpha != 1");
33 }
34
35 std::string output_name = nodeproto.output(0);
36
38
39 if (!parser.IsRegisteredTensorType(output_name)) {
40 parser.RegisterTensorType(output_name, input_type);
41 }
42
43 return op;
44};
45
46} // namespace SOFIE
47} // namespace Experimental
48} // namespace TMVA
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
std::function< std::unique_ptr< ROperator >(RModelParser_ONNX &, const onnx::NodeProto &)> ParserFuncSignature
ParserFuncSignature ParseSwish
Definition ParseSwish.cxx:9
create variable transformations