1#ifndef TMVA_SOFIE_ROPERATOR_RELU
2#define TMVA_SOFIE_ROPERATOR_RELU
11namespace Experimental{
27 fNX(UTILITY::Clean_name(nameX)),
fNY(UTILITY::Clean_name(nameY)){}
33 std::vector<std::vector<size_t>>
ShapeInference(std::vector<std::vector<size_t>> input){
40 throw std::runtime_error(
"TMVA SOFIE Relu Op Input Tensor is not found in model");
48 OpName =
"op_" + OpName;
50 throw std::runtime_error(
"TMVA SOFIE Transpose Relu called to Generate without being initialized first");
52 std::stringstream out;
57 out <<
"\n//------ RELU\n";
58 out <<
SP <<
"for (int id = 0; id < " << length <<
" ; id++){\n";
59 out <<
SP <<
SP <<
"tensor_" <<
fNY <<
"[id] = ((tensor_" <<
fNX <<
"[id] > 0 )? tensor_" <<
fNX <<
"[id] : 0);\n";
const ETensorType & GetTensorType(std::string name)
void AddIntermediateTensor(std::string tensor_name, ETensorType type, std::vector< std::size_t > shape)
bool CheckIfTensorAlreadyExist(std::string tensor_name)
const std::vector< size_t > & GetTensorShape(std::string name)
std::string Generate(std::string OpName)
std::vector< std::vector< size_t > > ShapeInference(std::vector< std::vector< size_t > > input)
ROperator_Relu(std::string nameX, std::string nameY)
std::vector< size_t > fShape
void Initialize(RModel &model)
std::vector< ETensorType > TypeInference(std::vector< ETensorType > input)
const std::string SP
space used to correctly indent the generated C++ code
create variable transformations