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>
62 static std::string Name() { return "Abs"; }
63 static std::string Op(const std::string &X) { return "std::abs(" + X + ")"; }
64};
65
66template <typename T>
68 static std::string Name() { return "Softplus"; }
69 static std::string Op(const std::string &X)
70 {
71 return "((" + X + " >= 0x1.4000000000000p+4f) ? " + X + " : std::log1p(std::exp(" + X + ")))";
72 }
73};
74
75template <typename T>
77 static std::string Name() { return "Atan"; }
78 static std::string Op(const std::string &X) { return "std::atan(" + X + ")"; }
79};
80
81template <typename T>
83 static std::string Name() { return "Floor"; }
84 static std::string Op(const std::string &X) { return "std::floor(" + X + ")"; }
85};
86
87template <typename T>
89 static std::string Name() { return "Asinh"; }
90 static std::string Op(const std::string &X) { return "std::asinh(" + X + ")"; }
91};
92
93template <typename T>
95 // acosh is only defined for X >= 1; std::acosh returns NaN outside this domain
96 static std::string Name() { return "Acosh"; }
97 static std::string Op(const std::string &X) { return "std::acosh(" + X + ")"; }
98};
99
100template <typename T>
102 // atanh is only defined for |X| < 1; std::atanh returns NaN/inf outside this domain
103 static std::string Name() { return "Atanh"; }
104 static std::string Op(const std::string &X) { return "std::atanh(" + X + ")"; }
105};
106
107template <typename T, EBasicUnaryOperator Op>
109private:
110 std::string fNX;
111 std::string fNY;
112
113 std::vector<Dim> fShapeX;
114 std::vector<Dim> fShapeY;
115
116public:
118
119 ROperator_BasicUnary(std::string nameX, std::string nameY)
120 : fNX(UTILITY::Clean_name(nameX)), fNY(UTILITY::Clean_name(nameY))
121 {
124 }
125
126 std::vector<std::vector<size_t>> ShapeInference(std::vector<std::vector<size_t>> input) override { return input; }
127
128 std::vector<ETensorType> TypeInference(std::vector<ETensorType> input) override { return input; }
129
130 void Initialize(RModel& model) override {
131 if (!model.CheckIfTensorAlreadyExist(fNX)) {
132 throw std::runtime_error("TMVA::SOFIE - Tensor " + fNX + " not found.");
133 }
134 fShapeX = model.GetDimTensorShape(fNX);
136 model.AddIntermediateTensor(fNY, model.GetTensorType(fNX), fShapeY);
137
138 model.AddNeededStdLib("cmath");
139 }
140
141 std::string Generate(std::string OpName) override
142 {
143 OpName = "op_" + OpName;
144 std::stringstream out;
145
146 out << SP << "\n//---- Operator" << UnaryOpTraits<T, Op>::Name() << " " << OpName << "\n";
148 out << SP << "for (size_t i = 0; i < " << length << "; i++) {\n";
149 out << SP << SP << "tensor_" << fNY << "[i] = " << UnaryOpTraits<T, Op>::Op("tensor_" + fNX + "[i]") << ";\n";
150 out << SP << "}\n";
151 return out.str();
152 }
153
154 std::vector<std::string> GetStdLibs() override {
155 return { std::string("cmath") };
156 }
157};
158
159} // namespace SOFIE
160} // namespace Experimental
161} // namespace TMVA
162
163#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
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:47
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:48
std::string ConvertDimShapeToLength(const std::vector< Dim > &shape)
create variable transformations