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 void Initialize(RModel& model) override {
39 if (model.CheckIfTensorAlreadyExist(fNX) == false){ //input must be a graph input, or already initialized intermediate tensor
40 throw std::runtime_error("TMVA SOFIE Shape Op Input Tensor " + fNX + " is not found in model");
41 }
42 fShape = model.GetTensorShape(fNX);
43 size_t length = fShape.size(); // this the size of shape not length of tensor
44 fStart = std::max(fStart,(int) -length);
45 fStart = std::min(fStart,(int) length);
46 if (fStart < 0) fStart += length;
47 fEnd = std::max(fEnd,(int) -length);
48 fEnd = std::min(fEnd, (int) length);
49 if (fEnd < 0) fEnd += length;
50 if (fEnd > fStart)
51 fOutput_shape = { size_t(fEnd - fStart) };
52 // in case the input tensor is not a dynamic tensor we should register the output as a Constant tensor since we know
53 // its content
54 if (!model.IsDynamicTensor(fNX) && !fOutput_shape.empty()) {
55 std::shared_ptr<void> data(malloc(length * sizeof(int64_t)), free);
56 auto shape_values = std::vector<int64_t>(fShape.begin()+fStart, fShape.begin() + fEnd );
57 std::memcpy(data.get(), (void*) shape_values.data(), length * sizeof(int64_t));
59 fOutputTensorNames.pop_back();
60 if (model.Verbose()) {
61 std::cout << "Output of Shape is constant tensor with shape " << ConvertShapeToString(fOutput_shape) << " and values ";
62 for (size_t i = 0; i < shape_values.size(); i++)
63 std::cout << shape_values[i] << " ";
64 std::cout << std::endl;
65 }
66 fIsOutputConstant = true;
67 }
68 else
70
71
72 }
73
74 std::string Generate(std::string OpName) override {
75 // no need to generate code if the output is constant
76 if (fIsOutputConstant) return "";
77
78 OpName = "op_" + OpName;
79 if (fShape.empty()) {
80 throw std::runtime_error("TMVA SOFIE Shape op called to Generate without being initialized first");
81 }
82 std::stringstream out;
83
84 out << "\n//------ Shape\n";
85 // add a dummy statement to avoid warning for unused input
86 out << SP << "(void) tensor_" << fNX << ";\n";
88 for (size_t id = 0; id < length; id++) {
89 out << SP << "tensor_" << fNY << "["<< id << "] = " << fShape[fStart+id] << ";\n";
90 }
91 return out.str();
92 }
93
94};
95
96}//SOFIE
97}//Experimental
98}//TMVA
99
100
101#endif //TMVA_SOFIE_ROPERATOR_Shape
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 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:186
void AddIntermediateTensor(std::string tensor_name, ETensorType type, std::vector< Dim > dim_shape)
Definition RModel.cxx:200
bool CheckIfTensorAlreadyExist(std::string tensor_name)
Definition RModel.cxx:95
void AddConstantTensor(std::string tensor_name, ETensorType type, std::vector< std::size_t > shape, std::shared_ptr< void > data)
Definition RModel.cxx:165
const std::vector< size_t > & GetTensorShape(std::string name) const
Definition RModel.cxx:29
ROperator_Shape(int start, int end, std::string nameX, std::string nameY)
std::string Generate(std::string OpName) override
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