2#ifndef TMVA_SOFIE_ROperator_Comparision
3#define TMVA_SOFIE_ROperator_Comparision
13namespace Experimental{
18template <
typename T, EComparisionOperator Op1>
23 static const std::string
Name() {
return "Equal"; }
24 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" == " +
t2; }
30 static const std::string
Name() {
return "Less"; }
31 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" < " +
t2; }
37 static const std::string
Name() {
return "LessOrEqual"; }
38 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" <= " +
t2; }
44 static const std::string
Name() {
return "Greater"; }
45 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" > " +
t2; }
51 static const std::string
Name() {
return "GreaterOrEqual"; }
52 static std::string
Op(
const std::string &
t1,
const std::string
t2) {
return t1 +
" >= " +
t2 ; }
56template<
typename T, EComparisionOperator Op>
97 if (!model.CheckIfTensorAlreadyExist(
fNX1)){
98 throw std::runtime_error(std::string(
"TMVA SOFIE Comparision Op Input Tensor ") +
fNX1 +
"is not found in model");
100 if (!model.CheckIfTensorAlreadyExist(
fNX2)) {
101 throw std::runtime_error(std::string(
"TMVA SOFIE Comparision Op Input Tensor ") +
fNX2 +
"is not found in model");
103 if (model.IsDynamicTensor(
fNX1))
109 if (model.IsDynamicTensor(
fNX2))
145 if (model.IsInitializedTensor(
fNX1)) {
146 data1 =
static_cast<T *
>(model.GetInitializedTensorData(
fNX1).get());
153 }
else if (model.IsShapeTensor(
fNX1)) {
156 if (model.IsInitializedTensor(
fNX2)) {
157 data2 =
static_cast<T *
>(model.GetInitializedTensorData(
fNX2).get());
163 }
else if (model.IsShapeTensor(
fNX2)) {
168 for (
size_t i = 0; i <
length; i++)
172 std::cout << ComparisionTrait<T, Op>::Name() <<
" op ---> " <<
fNY <<
" "
179 for (
size_t i = 0; i <
length; i++) {
193 for (
size_t i = 0; i <
length; i++) {
207 for (
size_t i = 0; i <
length; i++) {
226 std::cout << ComparisionTrait<T, Op>::Name() <<
" op ---> " <<
fNY <<
" "
228 <<
" (constant) " << std::endl;
237 std::cout << ComparisionTrait<T, Op>::Name() <<
" op ---> " <<
fNY <<
" "
252 auto inputNames = model.GetInputTensorNames();
254 for (
auto &
i_s : model.GetDimTensorShape(
input)) {
255 if (
i_s.isParam &&
i_s.param ==
p)
261 for (
size_t i = 0; i <
fDimShapeY.size(); i++) {
263 if (s.isParam && s.param.find(
"std::max") != std::string::npos) {
281 if (model.Verbose()) {
285 model.PrintIntermediateTensors();
295 throw std::runtime_error(
"TMVA SOFIE Comparision Op called to Generate without being initialized first");
297 std::stringstream out;
322 for (
int j = 0;
j < 3;
j++)
338 for (
int j = 0;
j < 3;
j++)
346 for (
size_t i = 0; i <
fDimShapeY.size(); ++i) {
350 out <<
"for (size_t idx_" << i <<
" = 0; idx_" << i <<
" < " <<
fDimShapeY[i]
351 <<
"; ++idx_" << i <<
"){\n";
359 for (
int j = 0;
j < 3;
j++)
362 for (
int j = 0;
j <
nloop + 1;
j++) out <<
SP;
368 for (
int i =
nloop; i > 0; i--) {
369 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< 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 > MultidirectionalBroadcastShape(std::vector< std::vector< size_t > >)
T * UnidirectionalBroadcast(const T *data, const std::vector< size_t > &shape, const std::vector< size_t > &targetShape)
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::string ConvertDimShapeToString(const std::vector< Dim > &shape)
std::size_t ConvertShapeToLength(const std::vector< size_t > &shape)
std::string ConvertValuesToString(size_t n, const T *data, size_t maxprint=-1)
std::vector< Dim > ConvertShapeToDim(const std::vector< size_t > &shape)
Convert shape from integer format to dynamic one (based on Dim)
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)