2#ifndef TMVA_SOFIE_ROperator_Comparision
3#define TMVA_SOFIE_ROperator_Comparision
12namespace Experimental{
17template <
typename T, EComparisionOperator Op1>
22 static const std::string
Name() {
return "Equal"; }
23 static std::string
Op(
const std::string &
t1,
const std::string t2) {
return t1 +
"==" + t2 +
"? true : false "; }
28 static const std::string
Name() {
return "Less"; }
29 static std::string
Op(
const std::string &
t1,
const std::string t2) {
return t1 +
"<" + t2 +
"? true : false "; }
34 static const std::string
Name() {
return "LessOrEqual"; }
35 static std::string
Op(
const std::string &
t1,
const std::string t2) {
return t1 +
"<=" + t2 +
"? true : false "; }
40 static const std::string
Name() {
return "Greater"; }
41 static std::string
Op(
const std::string &
t1,
const std::string t2) {
return t1 +
">" + t2 +
"? true : false "; }
46 static const std::string
Name() {
return "GreaterOrEqual"; }
47 static std::string
Op(
const std::string &
t1,
const std::string t2) {
return t1 +
">=" + t2 +
"? true : false " ; }
50template<
typename T, EComparisionOperator Op>
68 fNX1(UTILITY::Clean_name(nameX1)),
fNX2(UTILITY::Clean_name(nameX2)),
fNY(UTILITY::Clean_name(nameY)){}
84 throw std::runtime_error(std::string(
"TMVA SOFIE Comparision Op Input Tensor ") +
fNX1 +
"is not found in model");
87 throw std::runtime_error(std::string(
"TMVA SOFIE Comparision Op Input Tensor ") +
fNX2 +
"is not found in model");
101 std::shared_ptr<void> broadcastedData(
102 UTILITY::UnidirectionalBroadcast<float>(
static_cast<float *
>(
data.get()),
fShapeX1,
fShapeY),
103 std::default_delete<
float[]>());
117 std::shared_ptr<void> broadcastedData(
118 UTILITY::UnidirectionalBroadcast<float>(
static_cast<float *
>(
data.get()),
fShapeX2,
fShapeY),
119 std::default_delete<
float[]>());
135 std::string
Generate(std::string OpName)
override {
136 OpName =
"op_" + OpName;
139 throw std::runtime_error(
"TMVA SOFIE Comparision Op called to Generate without being initialized first");
141 std::stringstream out;
146 out <<
SP <<
"// Broadcasting uninitialized tensor " <<
fNX1 <<
"\n";
150 out <<
SP <<
SP <<
"delete[] data;\n";
155 out <<
SP <<
"// Broadcasting uninitialized tensor " <<
fNX2 <<
"\n";
159 out <<
SP <<
SP <<
"delete[] data;\n";
165 out <<
SP <<
"for (size_t id = 0; id < " <<
length <<
" ; id++){\n";
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 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
const ETensorType & GetTensorType(std::string name)
void AddIntermediateTensor(std::string tensor_name, ETensorType type, std::vector< Dim > dim_shape)
bool CheckIfTensorAlreadyExist(std::string tensor_name)
bool IsInitializedTensor(const std::string &name) const
const std::vector< size_t > & GetTensorShape(std::string name)
std::shared_ptr< void > GetInitializedTensorData(std::string tensor_name)
void UpdateInitializedTensor(std::string tensor_name, ETensorType type, std::vector< std::size_t > shape, std::shared_ptr< void > data)
std::vector< ETensorType > TypeInference(std::vector< ETensorType > input) override
std::vector< size_t > fShapeX2
ROperator_Comparision(std::string nameX1, std::string nameX2, std::string nameY)
std::string Generate(std::string OpName) override
std::vector< size_t > fShapeX1
std::vector< std::vector< size_t > > ShapeInference(std::vector< std::vector< size_t > > input) override
std::vector< size_t > fShapeY
std::string fNBroadcastedX2
void Initialize(RModel &model) override
std::string fNBroadcastedX1
const std::string SP
space used to correctly indent the generated C++ code
bool AreSameShape(const std::vector< size_t > &, const std::vector< size_t > &)
std::vector< size_t > UnidirectionalBroadcastShape(std::vector< size_t >, std::vector< size_t >)
std::string ConvertShapeToString(std::vector< size_t > shape)
std::size_t ConvertShapeToLength(std::vector< size_t > shape)
create variable transformations
static std::string Op(const std::string &t1, const std::string t2)
static const std::string Name()
static const std::string Name()
static std::string Op(const std::string &t1, const std::string t2)
static const std::string Name()
static std::string Op(const std::string &t1, const std::string t2)
static const std::string Name()
static std::string Op(const std::string &t1, const std::string t2)
static const std::string Name()
static std::string Op(const std::string &t1, const std::string t2)