1#ifndef TMVA_SOFIE_ROPERATOR_Random
2#define TMVA_SOFIE_ROPERATOR_Random
11namespace Experimental{
71 if (
fParams.count(
"mean") == 0 )
73 if (
fParams.count(
"scale") == 0)
84 std::cout <<
"Random";
89 std::cout <<
p.first <<
" : " <<
p.second << std::endl;
94 std::stringstream out;
95 out <<
"std::unique_ptr<TRandom> fRndmEngine; // random number engine\n";
100 std::stringstream out;
101 out <<
"//--- creating random number generator ----\n";
104 out <<
SP <<
"fRndmEngine.reset(new TRandom3(" <<
fSeed <<
"));\n";
114 std::stringstream out;
115 out <<
"\n//------ Random";
121 out <<
SP <<
"for (int i = 0; i < " <<
length <<
"; i++) {\n";
125 throw std::runtime_error(
"TMVA SOFIE RandomNormal op : no mean or scale are defined");
128 out <<
SP <<
SP <<
"tensor_" <<
fNY <<
"[i] = fRndmEngine->Gaus(" << mean <<
"," <<
scale <<
");\n";
131 throw std::runtime_error(
"TMVA SOFIE RandomUniform op : no low or high are defined");
134 out <<
SP <<
SP <<
"tensor_" <<
fNY <<
"[i] = fRndmEngine->Uniform(" << low <<
"," << high <<
");\n";
143 std::vector<std::string>
ret = {
"memory"};
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
Option_t Option_t TPoint TPoint const char mode
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 Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
void AddNeededCustomHeader(std::string filename)
void AddIntermediateTensor(std::string tensor_name, ETensorType type, std::vector< Dim > dim_shape)
ROperator_Random(RandomOpMode mode, ETensorType type, const std::string &nameX, const std::string &nameY, const std::vector< size_t > &shape, const std::map< std::string, float > ¶ms, float seed)
std::vector< std::string > GetStdLibs() override
std::string Generate(std::string OpName) override
std::map< std::string, float > fParams
std::vector< std::vector< size_t > > ShapeInference(std::vector< std::vector< size_t > > input) override
std::vector< ETensorType > TypeInference(std::vector< ETensorType > input) override
std::string GenerateInitCode() override
std::vector< size_t > fShapeY
std::string GenerateDeclCode() override
void Initialize(RModel &model) override
std::vector< std::string_view > fInputTensorNames
const std::string SP
space used to correctly indent the generated C++ code
std::vector< std::string_view > fOutputTensorNames
std::string ConvertShapeToString(std::vector< size_t > shape)
std::size_t ConvertShapeToLength(std::vector< size_t > shape)
create variable transformations