Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ROperator_BasicUnary.hxx
Go to the documentation of this file.
1#ifndef TMVA_EXPERIMENTAL_SOFIE_ROPERATOR_BASIC_UNARY
2#define TMVA_EXPERIMENTAL_SOFIE_ROPERATOR_BASIC_UNARY
3
4#include <TMVA/ROperator.hxx>
5#include <TMVA/RModel.hxx>
7
8namespace TMVA {
9namespace Experimental {
10namespace SOFIE {
11
13
14template <typename T, EBasicUnaryOperator Op>
16};
17
18template <typename T>
20 static std::string Name() { return "Reciprocal"; }
21 static std::string Op(const std::string &X) { return "1/" + X; }
22};
23
24template <typename T>
26 static std::string Name() { return "Sqrt"; }
27 static std::string Op(const std::string &X) { return "std::sqrt(" + X + ")"; }
28};
29
30template <typename T>
32 static std::string Name() { return "Neg"; }
33 static std::string Op(const std::string &X) { return "-" + X; }
34};
35
36template <typename T>
38 static std::string Name() { return "Exp"; }
39 static std::string Op(const std::string &X) { return "std::exp(" + X + ")"; }
40};
41
42template <typename T>
44 static std::string Name() { return "Log"; }
45 static std::string Op(const std::string &X) { return "std::log(" + X + ")"; }
46};
47
48template <typename T>
50 static std::string Name() { return "Sin"; }
51 static std::string Op(const std::string &X) { return "std::sin(" + X + ")"; }
52};
53
54template <typename T>
56 static std::string Name() { return "Cos"; }
57 static std::string Op(const std::string &X) { return "std::cos(" + X + ")"; }
58};
59
60template <typename T, EBasicUnaryOperator Op>
62private:
63 std::string fNX;
64 std::string fNY;
65
66 std::vector<size_t> fShapeX;
67 std::vector<size_t> fShapeY;
68
69public:
71
72 ROperator_BasicUnary(std::string nameX, std::string nameY)
73 : fNX(UTILITY::Clean_name(nameX)), fNY(UTILITY::Clean_name(nameY))
74 {
77 }
78
79 std::vector<std::vector<size_t>> ShapeInference(std::vector<std::vector<size_t>> input) override { return input; }
80
81 std::vector<ETensorType> TypeInference(std::vector<ETensorType> input) override { return input; }
82
83 void Initialize(RModel& model) override {
84 if (!model.CheckIfTensorAlreadyExist(fNX)) {
85 throw std::runtime_error("TMVA::SOFIE - Tensor " + fNX + " not found.");
86 }
87 fShapeX = model.GetTensorShape(fNX);
90 }
91
92 std::string Generate(std::string OpName) override
93 {
94 OpName = "op_" + OpName;
95 std::stringstream out;
96
97 out << SP << "\n//---- Operator" << UnaryOpTraits<T, Op>::Name() << " " << OpName << "\n";
99 out << SP << "for (size_t i = 0; i < " << length << "; i++) {\n";
100 out << SP << SP << "tensor_" << fNY << "[i] = " << UnaryOpTraits<T, Op>::Op("tensor_" + fNX + "[i]") << ";\n";
101 out << SP << "}\n";
102 return out.str();
103 }
104
105 std::vector<std::string> GetStdLibs() override {
107 return { std::string("cmath") };
108 } else {
109 return {};
110 }
111 }
112};
113
114} // namespace SOFIE
115} // namespace Experimental
116} // namespace TMVA
117
118#endif
#define X(type, name)
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 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
const ETensorType & GetTensorType(std::string name)
Definition RModel.cxx:94
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
const std::vector< size_t > & GetTensorShape(std::string name)
Definition RModel.cxx:56
std::vector< ETensorType > TypeInference(std::vector< ETensorType > input) override
std::string Generate(std::string OpName) override
ROperator_BasicUnary(std::string nameX, std::string nameY)
std::vector< std::string > GetStdLibs() override
std::vector< std::vector< size_t > > ShapeInference(std::vector< std::vector< size_t > > input) override
std::vector< std::string_view > fInputTensorNames
Definition ROperator.hxx:46
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::size_t ConvertShapeToLength(std::vector< size_t > shape)
create variable transformations