ROOT
Version v6.34
master
v6.32
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
►
core
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
►
math
►
montecarlo
►
net
►
proof
►
roofit
►
sql
▼
tmva
doc
►
pymva
►
rmva
►
sofie
▼
sofie_parsers
►
inc
▼
src
►
ParseBasicBinary.cxx
►
ParseBasicNary.cxx
►
ParseBasicUnary.cxx
►
ParseBatchNormalization.cxx
►
ParseCast.cxx
►
ParseComparision.cxx
►
ParseConcat.cxx
►
ParseConstant.cxx
►
ParseConv.cxx
►
ParseConvTranspose.cxx
►
ParseElu.cxx
►
ParseErf.cxx
►
ParseExpand.cxx
►
ParseEyeLike.cxx
►
ParseFuseConvAdd.cxx
►
ParseFuseConvTransposeAdd.cxx
►
ParseFuseMatMulAdd.cxx
►
ParseGather.cxx
►
ParseGemm.cxx
►
ParseGRU.cxx
►
ParseIdentity.cxx
►
ParseIf.cxx
►
ParseLayerNormalization.cxx
►
ParseLeakyRelu.cxx
►
ParseLSTM.cxx
►
ParseMatMul.cxx
►
ParsePool.cxx
►
ParseRange.cxx
►
ParseReduce.cxx
►
ParseRelu.cxx
►
ParseReshape.cxx
►
ParseRNN.cxx
►
ParseSelu.cxx
►
ParseShape.cxx
►
ParseSigmoid.cxx
►
ParseSlice.cxx
►
ParseSoftmax.cxx
►
ParseSplit.cxx
►
ParseTanh.cxx
►
ParseTile.cxx
►
ParseTopK.cxx
►
ParseTranspose.cxx
►
RModelParser_ONNX.cxx
►
tmva
►
tmvagui
►
tree
►
tutorials
►
v6-34-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
ParseErf.cxx
Go to the documentation of this file.
1
#include "
TMVA/RModelParser_ONNX.hxx
"
2
#include "
TMVA/ROperator_Erf.hxx
"
3
#include "onnx_proto3.pb.h"
4
5
namespace
TMVA
{
6
namespace
Experimental {
7
namespace
SOFIE {
8
9
ParserFuncSignature
ParseErf
= [](
RModelParser_ONNX
&parser,
const
onnx::NodeProto &
nodeproto
) {
10
ETensorType
input_type
;
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 Erf op has input tensor"
+
input_name
+
17
" but its type is not yet registered"
);
18
}
19
20
std::unique_ptr<ROperator>
op
;
21
std::string
output_name
=
nodeproto
.output(0);
22
23
switch
(
input_type
) {
24
case
ETensorType::FLOAT
:
op
.reset(
new
ROperator_Erf<float>
(
input_name
,
output_name
));
break
;
25
default
:
26
throw
std::runtime_error(
"TMVA::SOFIE - Unsupported - Operator Erf does not yet support input type "
+
27
std::to_string(
static_cast<
int
>
(
input_type
)));
28
}
29
30
if
(!parser.
IsRegisteredTensorType
(
output_name
)) {
31
parser.
RegisterTensorType
(
output_name
,
input_type
);
32
}
33
34
return
op
;
35
};
36
37
}
// namespace SOFIE
38
}
// namespace Experimental
39
}
// namespace TMVA
RModelParser_ONNX.hxx
ROperator_Erf.hxx
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
TMVA::Experimental::SOFIE::RModelParser_ONNX
Definition
RModelParser_ONNX.hxx:27
TMVA::Experimental::SOFIE::RModelParser_ONNX::IsRegisteredTensorType
bool IsRegisteredTensorType(const std::string &)
Definition
RModelParser_ONNX.cxx:246
TMVA::Experimental::SOFIE::RModelParser_ONNX::RegisterTensorType
void RegisterTensorType(const std::string &, ETensorType)
Definition
RModelParser_ONNX.cxx:241
TMVA::Experimental::SOFIE::RModelParser_ONNX::GetTensorType
ETensorType GetTensorType(const std::string &name)
Definition
RModelParser_ONNX.cxx:251
TMVA::Experimental::SOFIE::ETensorType
ETensorType
Definition
SOFIE_common.hxx:25
TMVA::Experimental::SOFIE::ETensorType::FLOAT
@ FLOAT
TMVA::Experimental::SOFIE::ParserFuncSignature
std::function< std::unique_ptr< ROperator >(RModelParser_ONNX &, const onnx::NodeProto &)> ParserFuncSignature
Definition
RModelParser_ONNX.hxx:22
TMVA::Experimental::SOFIE::ParseErf
ParserFuncSignature ParseErf
Definition
ParseErf.cxx:9
TMVA
create variable transformations
Definition
GeneticMinimizer.h:22
tmva
sofie_parsers
src
ParseErf.cxx
ROOT v6-34 - Reference Guide Generated on Fri Apr 4 2025 15:47:14 (GVA Time) using Doxygen 1.10.0