12#include <unordered_map>
17namespace Experimental {
131 throw std::runtime_error(
"TMVA::SOFIE - Failed to read float initialized tensor - actual size is " + std::to_string(
tensor->float_data_size()));
133 std::copy(
src.begin(),
src.end(),
static_cast<float *
>(
data));
140 throw std::runtime_error(
"TMVA::SOFIE - Failed to read double initialized tensor - actual size is " + std::to_string(
tensor->double_data_size()));
142 std::copy(
src.begin(),
src.end(),
static_cast<double *
>(
data));
149 throw std::runtime_error(
"TMVA::SOFIE - Failed to read int32 initialized tensor - actual size is " + std::to_string(
tensor->int32_data_size()));
151 std::copy(
src.begin(),
src.end(),
static_cast<int32_t *
>(
data));
158 throw std::runtime_error(
"TMVA::SOFIE - Failed to read int64 initialized tensor - actual size is " + std::to_string(
tensor->int64_data_size()));
160 std::copy(
src.begin(),
src.end(),
static_cast<int64_t *
>(
data));
170template <std::
size_t N>
174 auto dst =
static_cast<unsigned char *
>(
dest);
175 auto src =
static_cast<const unsigned char *
>(
source);
176 for (std::size_t k = 0; k <
nbytes; k +=
N) {
178 std::memcpy(&
v,
src + k,
N);
180 std::memcpy(
dst + k, &
v,
N);
196 throw std::runtime_error(
"Data type " +
ConvertTypeToString(tensor_type) +
" in tensor is not supported!\n");
206 std::shared_ptr<void>
data(
malloc(tensor_size), free);
212 throw std::runtime_error(
"TMVA::SOFIE - Failed to read raw data of initialized tensor - actual raw size is " +
224 switch (tensor_type) {
242 throw std::runtime_error(
"TMVA::SOFIE - ExtractData from TP in BOOL not supported");
246 throw std::runtime_error(
"TMVA::SOFIE - ExtractData from TP in UINT8 not supported");
250 throw std::runtime_error(
"Data type " +
ConvertTypeToString(tensor_type) +
" in weight tensor is not supported!\n");
258 std::string location;
262 if (
kv.key() ==
"location") location =
kv.value();
263 else if (
kv.key() ==
"offset")
offset = std::stoull(
kv.value());
275 throw std::runtime_error(
"TMVA::SOFIE ONNX : tensor " +
tensorproto->name() +
276 " has external data but no data file location is available");
279 std::cout <<
"Initialized data are stored externally in file " <<
dataFileName
280 <<
" at location " << location <<
" offset " <<
offset <<
" and with length " <<
buffer_size << std::endl;
283 throw std::runtime_error(
"TMVA::SOFIE ONNX : invalid stored data size vs tensor size");
291 throw std::runtime_error(
"TMVA::SOFIE ONNX: error reading external weight ONNX data file " +
dataFileName);
425 std::vector<std::string>
ops;
428 ops.emplace_back(it.first);
451std::unique_ptr<ROperator>
454 if (i >= nodes.size())
455 throw std::runtime_error(
"TMVA::SOFIE - Error in parsing ordered operators " + std::to_string(i) +
" is >= " + std::to_string(nodes.size()));
458 const std::string op_type =
nodeproto.op_type();
460 std::cout <<
"Parsing operator " << op_type << std::endl;
466 std::cout <<
"\tFusing operators " <<
graphproto.node(
idx1).name()
483 if (children.size() == 1) {
484 int idx2 = children.front();
485 if (op_type ==
"MatMul") {
502 }
else if (
nodeproto.op_type() ==
"Gemm") {
508 }
else if (
nodeproto.op_type() ==
"BatchNormalization") {
518 std::cout <<
"operator " << op_type <<
" is not supported" << std::endl;
519 throw std::runtime_error(
"TMVA::SOFIE Operator type " + op_type +
" is not yet supported");
522 std::cout <<
"\tCreating operator " << op_type << std::endl;
536 throw std::runtime_error(
"TMVA::SOFIE - Failed to load onnx file " +
filename);
541 std::time_t
ttime = std::time(0);
552 if (
isep != std::string::npos) {
573 throw std::runtime_error(
"TMVA::SOFIE - Failed to parse ONNX model from input stream");
577 std::time_t
ttime = std::time(0);
601 std::fstream
input(
filename, std::ios::in | std::ios::binary);
603 std::cerr <<
"TMVA::SOFIE - Failed to open onnx file " <<
filename << std::endl;
612 auto model = std::make_unique<onnx::ModelProto>();
614 if (!model->ParseFromIstream(&
input)) {
615 std::cerr <<
"TMVA::SOFIE - Failed to parse ONNX model from input stream" << std::endl;
621 std::cout <<
"ONNX Version " << model->ir_version() << std::endl;
628 std::cout <<
"\n" << graph.
name() <<
" Graph operator list\n";
629 for (
int i = 0; i < graph.
node_size(); i++) {
630 const auto & node = graph.
node(i);
631 const std::string
opType = node.op_type();
633 std::cout <<
"\tOperator " << i <<
" : " <<
opType <<
" (" << node.name() <<
"), " << graph.
node(i).input_size()
635 for (
int j = 0;
j < graph.
node(i).input_size();
j++) {
636 std::cout << graph.
node(i).input(
j);
637 if (
j < graph.
node(i).input_size() - 1)
640 std::cout <<
" }" << std::endl;
646 for (
int j = 0;
j < node.attribute_size();
j++) {
647 const auto & attribute = node.attribute(
j);
648 if (attribute.has_g()) {
649 const auto &
subGraph = attribute.g();
661 if (!model)
return false;
666 std::cout <<
"\nModel operator list " << model->producer_name() <<
"\n";
673 std::cout <<
"List of missing operators for model loaded from file " <<
filename << std::endl;
675 std::cout <<
op.first <<
" " <<
op.second << std::endl;
679 std::cout <<
"All operators in the loaded model are supported!\n";
691 std::cout <<
"\nParsing Graph - " <<
graphName << std::endl;
697 std::map<int, std::pair<EFusedOp, int>> &fMap;
698 std::map<int, std::pair<EFusedOp, int>> fSaved;
699 FusedOperatorsGuard(std::map<
int, std::pair<EFusedOp, int>> &map) : fMap(map) { fSaved.swap(fMap); }
709 std::cout <<
"Parsing model inputs...." << std::endl;
711 for (
int i = 0; i < graph.
input_size(); i++) {
716 std::cout <<
"\tgraph input " << i <<
" name " << graph.
input(i).name() <<
" type "
717 << graph.
input(i).type().tensor_type().elem_type() << std::endl;
731 throw std::runtime_error(
"TMVA::SOFIE data node with no shape restrictions is not supported yet");
732 for (
int j = 0;
j <
valueinfoproto.type().tensor_type().shape().dim_size();
j++) {
736 int dim_value =
valueinfoproto.type().tensor_type().shape().dim(
j).dim_value();
744 }
else if (
valueinfoproto.type().tensor_type().shape().dim(
j).value_case() ==
750 throw std::runtime_error(
"TMVA::SOFIE ONNX file error: Valueinfoproto " +
input_name +
751 " has neither dim_value nor dim_param! \n");
755 if (
valueinfoproto.type().tensor_type().shape().dim_size() == 0) {
777 std::cout <<
"\nParsing graph initializer list and fill model initialized tensors" << std::endl;
781 std::vector<std::size_t> shape;
789 std::string tensor_name = graph.
initializer(i).name();
792 std::cout <<
"\t initializer " << i <<
" name " << tensor_name <<
" type " << graph.
initializer(i).data_type()
801 rmodel.AddInitializedTensor(tensor_name, tensor_type, shape,
data);
805 std::cout <<
"add initialized tensor " << tensor_name <<
"with shape " <<
ConvertShapeToString(shape) <<
"and ";
807 std::cout <<
" float data: ";
811 std::cout <<
" int64 data: ";
815 std::cout <<
" uint8 data: ";
819 std::cout <<
" Boolean data: ";
822 std::cout << std::endl;
828 std::cout <<
"\nGraph operator list (ONNX order)\n";
829 for (
int i = 0; i < graph.
node_size(); i++) {
830 std::cout <<
"\tOperator " << i <<
" : " << graph.
node(i).op_type() <<
" , " << graph.
node(i).input_size()
832 for (
int j = 0;
j < graph.
node(i).input_size();
j++) {
833 std::cout << graph.
node(i).input(
j);
834 if (
j < graph.
node(i).input_size() - 1)
837 std::cout <<
" }" << std::endl;
843 std::cout <<
"\n***********************\nRe-Order graph operator list\n*************************\n";
850 for (
int i = 0; i < graph.
input_size(); i++) {
855 for (
int i = 0; i < graph.
node_size(); i++) {
860 int input_size = graph.
node(i).input_size();
863 std::cout <<
"Checking input of Node " << i <<
" : " << graph.
node(i).name() << std::endl;
864 for (
int j = 0;
j < input_size;
j++) {
865 std::string
name = graph.
node(i).input(
j);
871 std::cout <<
"\t\t input " <<
name <<
" "
880 std::cout <<
"skip node " << graph.
node(i).op_type() <<
" " << graph.
node(i).name() <<
" inputs are not existing ";
881 for (
int j = 0;
j < input_size;
j++) {
882 std::cout << graph.
node(i).input(
j) <<
" ";
884 std::cout << std::endl;
891 std::cout <<
"===> New node " << graph.
node(i).op_type() <<
" " << graph.
node(i).name() <<
" order " << i << std::endl;
896 for (
int j = 0;
j < graph.
node(i).output_size();
j++) {
897 if (
fVerbose) std::cout <<
"\toutput : " << graph.
node(i).output(
j) << std::endl;
904 std::cout <<
"cannot find a new node after " << graph.
node(
ilast).op_type() <<
" " << graph.
node(
ilast).name() << std::endl;
905 throw std::runtime_error(
"TMVA::SOFIE - cannot find a new node ");
913 for (
int k = 0; k < graph.
node_size(); k++) {
931 std::cout <<
"\nGraph operator list (re-ordered)\n";
932 for (
int k = 0; k < graph.
node_size(); k++) {
934 std::cout <<
"\tOperator " << i <<
" : " << graph.
node(i).op_type() <<
" , " << graph.
node(i).name() <<
" input tensors : {";
935 for (
int j = 0;
j < graph.
node(i).input_size();
j++) {
936 std::cout << graph.
node(i).input(
j);
937 if (
j < graph.
node(i).input_size() - 1)
941 std::cout <<
" children : {";
945 std::cout <<
"}" << std::endl;
951 std::cout <<
"Fill RModel with operators...\n";
957 for (
int i = 0; i < graph.
node_size(); i++) {
961 std::cout <<
"\t" << i <<
" " <<
nodesOrder[i] <<
" parsing operator " << op_type << std::endl;
967 std::cout <<
"\t\tskipping operator since it is fused with previous one" << std::endl;
977 std::cout <<
"\nParsing Graph output list\n";
980 std::cout <<
"\toutput " << i <<
" name " << graph.
output(i).name() << std::endl;
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void input
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t dest
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h length
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
const_iterator begin() const
const_iterator end() const
std::string fDefaultDataFileName
std::string fOpenedDataFileName
void RegisterOperator(const std::string &name, ParserFuncSignature func)
std::unique_ptr< ROperator > ParseOperator(const size_t, const onnx::GraphProto &, const std::vector< size_t > &, const std::vector< int > &)
std::string fDataFileName
bool IsRegisteredOperator(const std::string &name)
void CheckGraph(const onnx::GraphProto &g, int &level, std::map< std::string, int > &missingOperators)
void ParseONNXGraph(RModel &model, const onnx::GraphProto &g, std::string name="")
RModelParser_ONNX() noexcept
std::unordered_map< std::string, ETensorType > fTensorTypeMap
RModel Parse(std::string const &filename, bool verbose=false)
std::shared_ptr< void > GetInitializedTensorData(onnx::TensorProto *tensorproto, size_t tensor_length, ETensorType type)
std::map< int, std::pair< EFusedOp, int > > fFusedOperators
bool IsRegisteredTensorType(const std::string &)
void RegisterTensorType(const std::string &, ETensorType)
void ResetExternalDataState()
ETensorType GetTensorType(const std::string &name)
std::string fModelDirectory
std::vector< std::string > GetRegisteredOperators()
std::unique_ptr< onnx::ModelProto > LoadModel(const std::string &filename)
std::unique_ptr< OperatorsMapImpl > fOperatorsMapImpl
bool CheckModel(std::string filename, bool verbose=false)
const ValueInfoProto & input(int i) const
const ValueInfoProto & output(int i) const
int initializer_size() const
const std::string & name() const
const NodeProto & node(int i) const
const TensorProto & initializer(int i) const
std::string Clean_name(std::string input_tensor_name)
ParserFuncSignature ParseIsNaN
ParserFuncSignature ParseSqrt
ParserFuncSignature ParseBatchNormalization
ParserFuncSignature ParseGreater
std::function< std::unique_ptr< ROperator >(RModelParser_ONNX &, const onnx::NodeProto &, const onnx::NodeProto &)> ParserFuseFuncSignature
ParserFuncSignature ParseReshape
ParserFuseFuncSignature ParseFuseConvTransposeAdd
ParserFuncSignature ParseReduceMean
ParserFuseFuncSignature ParseFuseMatMulAdd
ParserFuncSignature ParseGather
ParserFuncSignature ParseNeg
ParserFuncSignature ParseWhere
ParserFuncSignature ParseCos
ParserFuncSignature ParseLog
ParserFuncSignature ParseLeakyRelu
ParserFuncSignature ParseExp
std::function< std::unique_ptr< ROperator >(RModelParser_ONNX &, const onnx::NodeProto &)> ParserFuncSignature
ParserFuncSignature ParseEinsum
ParserFuncSignature ParsePool
ParserFuncSignature ParseDiv
ParserFuncSignature ParseLayerNormalization
ParserFuncSignature ParseConcat
ParserFuncSignature ParseTopK
ParserFuncSignature ParseMax
ParserFuncSignature ParseEq
ParserFuncSignature ParseIdentity
ParserFuncSignature ParseConvTranspose
ParserFuncSignature ParseReduceProd
ParserFuncSignature ParseNot
ParserFuncSignature ParseSlice
ParserFuncSignature ParseRandom
ParserFuncSignature ParseTranspose
ParserFuncSignature ParseLess
ParserFuncSignature ParseShape
ParserFuncSignature ParseClip
constexpr size_t GetTypeSize(ETensorType type)
ParserFuncSignature ParseScatterND
ParserFuncSignature ParseGRU
ParserFuncSignature ParseMatMul
ParserFuncSignature ParseErf
ParserFuncSignature ParseSub
ParserFuncSignature ParseAdd
ParserFuncSignature ParseNonZero
ParserFuncSignature ParseIf
ParserFuncSignature ParseRange
ParserFuncSignature ParseSoftplus
ParserFuncSignature ParseExpand
ParserFuncSignature ParseRNN
ParserFuncSignature ParseHardSigmoid
ParserFuncSignature ParseLSTM
ParserFuncSignature ParseCast
ParserFuncSignature ParseReciprocal
ParserFuncSignature ParseSwish
ParserFuncSignature ParseSigmoid
ParserFuseFuncSignature ParseFuseConvAdd
ParserFuncSignature ParseAtan
ParserFuncSignature ParseFloor
ParserFuseFuncSignature ParseFuseBatchnormRelu
ParserFuncSignature ParseIsInf
ParserFuncSignature ParseSoftmax
ParserFuncSignature ParseGreaterEq
ParserFuncSignature ParseMod
std::string ConvertTypeToString(ETensorType type)
ParserFuncSignature ParseGelu
ParserFuncSignature ParseMean
ParserFuncSignature ParseSplit
ParserFuncSignature ParseConstant
ParserFuncSignature ParseSelu
ParserFuncSignature ParseLessEq
ParserFuncSignature ParseHardSwish
ParserFuncSignature ParseGatherND
ParserFuncSignature ParseSum
ParserFuncSignature ParseEyeLike
ParserFuncSignature ParsePad
ParserFuncSignature ParseElu
std::string ConvertShapeToString(const std::vector< size_t > &shape)
ParserFuncSignature ParseMin
ParserFuncSignature ParseRelu
ParserFuncSignature ParseReduceSum
ParserFuncSignature ParseConv
ParserFuncSignature ParseInstanceNormalization
ParserFuncSignature ParseScatterElements
ParserFuncSignature ParseGemm
ParserFuncSignature ParseTile
ParserFuncSignature ParseMul
ParserFuseFuncSignature ParseFuseGemmRelu
ParserFuncSignature ParsePow
ParserFuncSignature ParseAbs
ParserFuncSignature ParseSin
ParserFuncSignature ParseReduceSumSquare
ParserFuncSignature ParseTanh
create variable transformations
Helper templated class for swapping bytes; specializations for N={2,4,8} are provided below.
std::unordered_map< std::string, ParserFuncSignature > fOperatorsMap