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; }
29 static const std::string
Name() {
return "Less"; }
30 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" < " +
t2; }
36 static const std::string
Name() {
return "LessOrEqual"; }
37 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" <= " +
t2; }
43 static const std::string
Name() {
return "Greater"; }
44 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" > " +
t2; }
50 static const std::string
Name() {
return "GreaterOrEqual"; }
51 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" >= " +
t2 ; }
55template<
typename T, EComparisionOperator Op>
97 throw std::runtime_error(std::string(
"TMVA SOFIE Comparision Op Input Tensor ") +
fNX1 +
"is not found in model");
100 throw std::runtime_error(std::string(
"TMVA SOFIE Comparision Op Input Tensor ") +
fNX2 +
"is not found in model");
165 for (
size_t i = 0; i <
length; i++)
169 std::cout << ComparisionTrait<T, Op>::Name() <<
" op ---> " <<
fNY <<
" "
176 for (
size_t i = 0; i <
length; i++) {
190 for (
size_t i = 0; i <
length; i++) {
204 for (
size_t i = 0; i <
length; i++) {
223 std::cout << ComparisionTrait<T, Op>::Name() <<
" op ---> " <<
fNY <<
" "
225 <<
" (constant) " << std::endl;
234 std::cout << ComparisionTrait<T, Op>::Name() <<
" op ---> " <<
fNY <<
" "
252 if (
i_s.isParam &&
i_s.param ==
p)
258 for (
size_t i = 0; i <
fDimShapeY.size(); i++) {
260 if (s.isParam && s.param.find(
"std::max") != std::string::npos) {
292 throw std::runtime_error(
"TMVA SOFIE Comparision Op called to Generate without being initialized first");
294 std::stringstream out;
319 for (
int j = 0;
j < 3;
j++)
335 for (
int j = 0;
j < 3;
j++)
343 for (
size_t i = 0; i <
fDimShapeY.size(); ++i) {
347 out <<
"for (size_t idx_" << i <<
" = 0; idx_" << i <<
" < " <<
fDimShapeY[i]
348 <<
"; ++idx_" << i <<
"){\n";
356 for (
int j = 0;
j < 3;
j++)
359 for (
int j = 0;
j <
nloop + 1;
j++) out <<
SP;
365 for (
int i =
nloop; i > 0; i--) {
366 for (
int j = 0;
j < i;
j++) out <<
SP;
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
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< size_t > GetTensorShape(const std::string &name) const
void PrintIntermediateTensors() const
std::vector< Dim > GetDimTensorShape(const std::string &name) const
bool IsDynamicTensor(const std::string &name) const
void AddIntermediateTensor(std::string tensor_name, ETensorType type, std::vector< Dim > dim_shape)
bool CheckIfTensorAlreadyExist(std::string tensor_name)
void AddConstantTensor(std::string tensor_name, ETensorType type, std::vector< std::size_t > shape, std::shared_ptr< void > data)
bool IsShapeTensor(const std::string &name) const
check if a tensor is a shape tensor
bool IsInitializedTensor(const std::string &name) const
std::vector< Dim > GetDynamicTensorShape(const std::string &name) const
std::shared_ptr< void > GetInitializedTensorData(std::string tensor_name)
ETensorType GetTensorType(std::string name) const
const std::vector< std::string > & GetInputTensorNames() const
const std::vector< Dim > & GetShapeTensorValues(const std::string &tensor_name) const
std::vector< ETensorType > TypeInference(std::vector< ETensorType > input) override
std::vector< size_t > fShapeX2
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::vector< Dim > fDimShapeY
ROperator_Comparision(const std::string &nameX1, const std::string &nameX2, const std::string &nameY)
void Initialize(RModel &model) override
std::vector< Dim > fDimShapeX2
std::vector< Dim > fDimShapeX1
std::vector< std::string_view > fInputTensorNames
bool fIsOutputConstant
flag to identify if operator has a constant output (no need to generate code)
const std::string SP
space used to correctly indent the generated C++ code
std::vector< std::string_view > fOutputTensorNames
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::vector< size_t > MultidirectionalBroadcastShape(std::vector< std::vector< size_t > >)
std::vector< size_t > ComputeStrideFromShape(const std::vector< size_t > &shape)
compute stride of a tensor given its shape (assume layout is row-major)
std::size_t ConvertShapeToLength(const std::vector< size_t > &shape)
std::vector< Dim > ConvertShapeToDim(const std::vector< size_t > &shape)
Convert shape from integer format to dynamic one (based on Dim)
std::string ConvertValuesToString(size_t n, const T *data)
std::string ConvertShapeToString(const std::vector< size_t > &shape)
create variable transformations
static std::string Op(const std::string &t1, const std::string t2)
static bool Result(T v1, T v2)
static const std::string Name()
static const std::string Name()
static std::string Op(const std::string &t1, const std::string t2)
static bool Result(T v1, T v2)
static const std::string Name()
static bool Result(T v1, T v2)
static std::string Op(const std::string &t1, const std::string t2)
static bool Result(T v1, T v2)
static const std::string Name()
static std::string Op(const std::string &t1, const std::string t2)
static const std::string Name()
static bool Result(T v1, T v2)
static std::string Op(const std::string &t1, const std::string t2)