Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ROperator_Shape.hxx
Go to the documentation of this file.
1#ifndef TMVA_SOFIE_ROPERATOR_Shape
2#define TMVA_SOFIE_ROPERATOR_Shape
3
5#include "TMVA/ROperator.hxx"
6#include "TMVA/RModel.hxx"
7
8#include <sstream>
9#include<sstream>
10#include<vector>
11#include <iterator>
12#include<string>
13namespace TMVA{
14namespace Experimental{
15namespace SOFIE{
16
18{
19
20private:
21
22 /* Attributes*/
23 int fStart = 0; // default is beginning
24 int fEnd = 0; // default is input length (all input tensor shape included)
25 std::string fNX;
26 std::string fNY;
27 std::vector<size_t> fShape;
28 std::vector<size_t> fOutput_shape;
29
30public:
32 ROperator_Shape(int start, int end, std::string nameX, std::string nameY):
33 fStart(start) ,fEnd(end), fNX(UTILITY::Clean_name(nameX)), fNY(UTILITY::Clean_name(nameY)){
36 }
37
38 std::vector<ETensorType> TypeInference(std::vector<ETensorType> input){
39 return input;
40 }
41
42 std::vector<std::vector<size_t>> ShapeInference(std::vector<std::vector<size_t>> input){
43 std::vector<std::vector<size_t>> ret;
44 ret[0].push_back(input[0].size());
45 return ret;
46 }
47
48 void Initialize(RModel& model) override {
49 if (model.CheckIfTensorAlreadyExist(fNX) == false){ //input must be a graph input, or already initialized intermediate tensor
50 throw std::runtime_error("TMVA SOFIE Shape Op Input Tensor " + fNX + " is not found in model");
51 }
52 fShape = model.GetTensorShape(fNX);
53 size_t length = fShape.size(); // this the size of shape not length of tensor
54 fStart = std::max(fStart,(int) -length);
55 fStart = std::min(fStart,(int) length);
56 if (fStart < 0) fStart += length;
57 fEnd = std::max(fEnd,(int) -length);
58 fEnd = std::min(fEnd, (int) length);
59 if (fEnd < 0) fEnd += length;
60 if (fEnd > fStart)
61 fOutput_shape = { size_t(fEnd - fStart) };
62 // in case the input tensor is not a dynamic tensor we should register the output as a Constant tensor since we know
63 // its content
64 if (!model.IsDynamicTensor(fNX) && !fOutput_shape.empty()) {
65 std::shared_ptr<void> data(malloc(length * sizeof(int64_t)), free);
66 auto shape_values = std::vector<int64_t>(fShape.begin()+fStart, fShape.begin() + fEnd );
67 std::memcpy(data.get(), (void*) shape_values.data(), length * sizeof(int64_t));
69 fOutputTensorNames.pop_back();
70 if (model.Verbose()) {
71 std::cout << "Output of Shape is constant tensor with shape " << ConvertShapeToString(fOutput_shape) << " and values ";
72 for (size_t i = 0; i < shape_values.size(); i++)
73 std::cout << shape_values[i] << " ";
74 std::cout << std::endl;
75 }
76 fIsOutputConstant = true;
77 }
78 else
80
81
82 }
83
84 std::string Generate(std::string OpName){
85 // no need to generate code if the output is constant
86 if (fIsOutputConstant) return "";
87
88 OpName = "op_" + OpName;
89 if (fShape.empty()) {
90 throw std::runtime_error("TMVA SOFIE Shape op called to Generate without being initialized first");
91 }
92 std::stringstream out;
93
94 out << "\n//------ Shape\n";
95 // add a dummy statement to avoid warning for unused input
96 out << SP << "(void) tensor_" << fNX << ";\n";
98 for (size_t id = 0; id < length; id++) {
99 out << SP << "tensor_" << fNY << "["<< id << "] = " << fShape[fStart+id] << ";\n";
100 }
101 return out.str();
102 }
103
104};
105
106}//SOFIE
107}//Experimental
108}//TMVA
109
110
111#endif //TMVA_SOFIE_ROPERATOR_Shape
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
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 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 id
#define malloc
Definition civetweb.c:1536
bool IsDynamicTensor(const std::string &name) const
Definition RModel.cxx:213
void AddIntermediateTensor(std::string tensor_name, ETensorType type, std::vector< Dim > dim_shape)
Definition RModel.cxx:227
bool CheckIfTensorAlreadyExist(std::string tensor_name)
Definition RModel.cxx:122
void AddConstantTensor(std::string tensor_name, ETensorType type, std::vector< std::size_t > shape, std::shared_ptr< void > data)
Definition RModel.cxx:192
const std::vector< size_t > & GetTensorShape(std::string name)
Definition RModel.cxx:56
std::string Generate(std::string OpName)
ROperator_Shape(int start, int end, std::string nameX, std::string nameY)
std::vector< ETensorType > TypeInference(std::vector< ETensorType > input)
std::vector< std::vector< size_t > > ShapeInference(std::vector< std::vector< size_t > > input)
std::vector< std::string_view > fInputTensorNames
Definition ROperator.hxx:46
bool fIsOutputConstant
flag to identify if operator has a constant output (no need to generate code)
Definition ROperator.hxx:44
const std::string SP
space used to correctly indent the generated C++ code
Definition ROperator.hxx:42
std::vector< std::string_view > fOutputTensorNames
Definition ROperator.hxx:47
std::string ConvertShapeToString(std::vector< size_t > shape)
std::size_t ConvertShapeToLength(std::vector< size_t > shape)
create variable transformations