CMS 3D CMS Logo

List of all members | Public Member Functions
trklet::VarParam Class Reference

#include <imath.h>

Inheritance diagram for trklet::VarParam:
trklet::VarBase

Public Member Functions

void print (std::ofstream &fs, HLS, int l1=0, int l2=0, int l3=0) override
 
void print (std::ofstream &fs, Verilog, int l1=0, int l2=0, int l3=0) override
 
void set_fval (double fval)
 
void set_ival (int ival)
 
 VarParam (imathGlobals *globals, std::string name, double fval, int nbits)
 
 VarParam (imathGlobals *globals, std::string name, std::string units, double fval, double K)
 
 ~VarParam () override=default
 
- Public Member Functions inherited from trklet::VarBase
void add_cut (VarCut *cut, const bool call_set_cut_var=true)
 
void add_delay (int i)
 
void add_latency (unsigned int l)
 
void analyze ()
 
bool calculate ()
 
bool calculate (int debug_level)
 
VarBasecut_var ()
 
std::string dump ()
 
void dump_msg ()
 
double fval () const
 
bool has_delay (int i)
 
void inputs (std::vector< VarBase * > *vd)
 
long int ival () const
 
double K () const
 
std::map< std::string, int > Kmap () const
 
std::string kstring () const
 
int latency () const
 
virtual void local_calculate ()
 
bool local_passes () const
 
void makeready ()
 
double maxval () const
 
double minval () const
 
std::string name () const
 
int nbits () const
 
std::string op () const
 
VarBasep1 () const
 
VarBasep2 () const
 
VarBasep3 () const
 
void passes (std::map< const VarBase *, std::vector< bool > > &passes, const std::map< const VarBase *, std::vector< bool > > *const previous_passes=nullptr) const
 
int pipe_counter ()
 
std::string pipe_delays (const int step)
 
void pipe_increment ()
 
void print_all (std::ofstream &fs, HLS)
 
void print_all (std::ofstream &fs, Verilog)
 
void print_cuts (std::map< const VarBase *, std::set< std::string > > &cut_strings, const int step, HLS, const std::map< const VarBase *, std::set< std::string > > *const previous_cut_strings=nullptr) const
 
void print_cuts (std::map< const VarBase *, std::set< std::string > > &cut_strings, const int step, Verilog, const std::map< const VarBase *, std::set< std::string > > *const previous_cut_strings=nullptr) const
 
void print_step (int step, std::ofstream &fs, HLS)
 
void print_step (int step, std::ofstream &fs, Verilog)
 
void print_truncation (std::string &t, const std::string &o1, const int ps, HLS) const
 
void print_truncation (std::string &t, const std::string &o1, const int ps, Verilog) const
 
double range () const
 
void reset ()
 
int shift () const
 
int step () const
 
 VarBase (imathGlobals *globals, std::string name, VarBase *p1, VarBase *p2, VarBase *p3, int l)
 
virtual ~VarBase ()
 

Additional Inherited Members

- Static Public Member Functions inherited from trklet::VarBase
static void design_print (std::vector< VarBase * > v, std::ofstream &fs, HLS)
 
static void design_print (std::vector< VarBase * > v, std::ofstream &fs, Verilog)
 
static void hls_print (std::vector< VarBase * > v, std::ofstream &fs)
 
static std::string itos (int i)
 
static std::string pipe_delay (VarBase *v, int nbits, int delay)
 
static std::string pipe_delay_wire (VarBase *v, std::string name_delayed, int nbits, int delay)
 
static void verilog_print (std::vector< VarBase * > v, std::ofstream &fs)
 
- Static Public Attributes inherited from trklet::VarBase
static struct trklet::VarBase::HLS hls
 
static struct trklet::VarBase::Verilog verilog
 
- Protected Attributes inherited from trklet::VarBase
VarBasecut_var_
 
std::vector< VarBase * > cuts_
 
double fval_
 
imathGlobalsglobals_
 
long int ival_
 
double K_
 
std::map< std::string, int > Kmap_
 
int latency_
 
double maxval_
 
double minval_
 
std::string name_
 
int nbits_
 
std::string op_
 
VarBasep1_
 
VarBasep2_
 
VarBasep3_
 
int pipe_counter_
 
std::vector< int > pipe_delays_
 
bool readytoanalyze_
 
bool readytoprint_
 
int step_
 
bool usedasinput_
 
double val_
 

Detailed Description

Definition at line 415 of file imath.h.

Constructor & Destructor Documentation

◆ VarParam() [1/2]

trklet::VarParam::VarParam ( imathGlobals globals,
std::string  name,
double  fval,
int  nbits 
)
inline

Definition at line 417 of file imath.h.

418  : VarBase(globals, name, nullptr, nullptr, nullptr, 0) {
419  op_ = "const";
420  nbits_ = nbits;
421  int l = log2(std::abs(fval)) + 1.9999999 - nbits;
422  Kmap_["2"] = l;
423  K_ = pow(2, l);
424  fval_ = fval;
425  ival_ = fval / K_;
426  }

References funct::abs(), trklet::VarBase::fval(), trklet::VarBase::fval_, trklet::VarBase::ival_, trklet::VarBase::K_, trklet::VarBase::Kmap_, cmsLHEtoEOSManager::l, trklet::VarBase::nbits(), trklet::VarBase::nbits_, trklet::VarBase::op_, and funct::pow().

◆ VarParam() [2/2]

trklet::VarParam::VarParam ( imathGlobals globals,
std::string  name,
std::string  units,
double  fval,
double  K 
)
inline

Definition at line 427 of file imath.h.

428  : VarBase(globals, name, nullptr, nullptr, nullptr, 0) {
429  op_ = "const";
430  K_ = K;
431  nbits_ = log2(fval / K) + 1.999999; //plus one to round up
432  if (!units.empty())
433  Kmap_[units] = 1;
434  else {
435  //defining a constant, K should be a power of two
436  int l = log2(K);
437  if (std::abs(pow(2, l) / K - 1) > 1e-5) {
438  char slog[100];
439  snprintf(slog, 100, "defining unitless constant, yet K is not a power of 2! %g, %g", K, pow(2, l));
440  edm::LogVerbatim("Tracklet") << slog;
441  }
442  Kmap_["2"] = l;
443  }
444  }

References funct::abs(), MillePedeFileConverter_cfg::e, trklet::VarBase::fval(), trklet::VarBase::K(), trklet::VarBase::K_, trklet::VarBase::Kmap_, cmsLHEtoEOSManager::l, trklet::VarBase::nbits_, trklet::VarBase::op_, funct::pow(), and units().

◆ ~VarParam()

trklet::VarParam::~VarParam ( )
overridedefault

Member Function Documentation

◆ print() [1/2]

void VarParam::print ( std::ofstream &  fs,
HLS  ,
int  l1 = 0,
int  l2 = 0,
int  l3 = 0 
)
overridevirtual

Reimplemented from trklet::VarBase.

Definition at line 111 of file imath_HLS.cc.

111  {
112  assert(l1 == 0);
113  assert(l2 == 0);
114  assert(l3 == 0);
115 
116  fs << "// " << nbits_ << " bits \t " << kstring() << "\t" << K_ << "\n";
117  fs << "static const ap_int<" << nbits_ << "> " << name_ << " = " << ival_ << ";\n";
118 }

References cms::cuda::assert(), trklet::VarBase::ival_, trklet::VarBase::K_, trklet::VarBase::kstring(), trklet::VarBase::name_, and trklet::VarBase::nbits_.

◆ print() [2/2]

void VarParam::print ( std::ofstream &  fs,
Verilog  ,
int  l1 = 0,
int  l2 = 0,
int  l3 = 0 
)
overridevirtual

Reimplemented from trklet::VarBase.

Definition at line 125 of file imath_Verilog.cc.

125  {
126  assert(l1 == 0);
127  assert(l2 == 0);
128  assert(l3 == 0);
129  std::string t = "parameter " + name_ + " = ";
130  if (ival_ < 0)
131  t = t + "- " + itos(nbits_) + "\'sd" + itos(-ival_);
132  else
133  t = t + itos(nbits_) + "\'sd" + itos(ival_);
134  fs << "// " << nbits_ << " bits \t " << kstring() << "\t" << K_ << "\n" << t << ";\n";
135 }

References cms::cuda::assert(), trklet::VarBase::itos(), trklet::VarBase::ival_, trklet::VarBase::K_, trklet::VarBase::kstring(), trklet::VarBase::name_, trklet::VarBase::nbits_, AlCaHLTBitMon_QueryRunRegistry::string, and OrderedSet::t.

◆ set_fval()

void trklet::VarParam::set_fval ( double  fval)
inline

◆ set_ival()

void trklet::VarParam::set_ival ( int  ival)
inline

Definition at line 456 of file imath.h.

456  {
457  ival_ = ival;
458  fval_ = ival * K_;
459  val_ = fval_;
460  }

References trklet::VarBase::fval_, trklet::VarBase::ival(), trklet::VarBase::ival_, trklet::VarBase::K_, and trklet::VarBase::val_.

trklet::VarBase::fval
double fval() const
Definition: imath.h:212
trklet::VarBase::name
std::string name() const
Definition: imath.h:207
cms::cuda::assert
assert(be >=bs)
trklet::VarBase::val_
double val_
Definition: imath.h:306
trklet::VarBase::kstring
std::string kstring() const
Definition: imath.cc:18
trklet::VarBase::nbits
int nbits() const
Definition: imath.h:243
trklet::VarBase::VarBase
VarBase(imathGlobals *globals, std::string name, VarBase *p1, VarBase *p2, VarBase *p3, int l)
Definition: imath.h:161
units
TString units(TString variable, Char_t axis)
trklet::VarBase::op_
std::string op_
Definition: imath.h:300
OrderedSet.t
t
Definition: OrderedSet.py:90
trklet::VarBase::itos
static std::string itos(int i)
Definition: imath.cc:16
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
trklet::VarBase::ival_
long int ival_
Definition: imath.h:305
trklet::VarBase::K
double K() const
Definition: imath.h:246
edm::LogVerbatim
Definition: MessageLogger.h:297
trklet::VarBase::ival
long int ival() const
Definition: imath.h:213
trklet::VarBase::Kmap_
std::map< std::string, int > Kmap_
Definition: imath.h:313
cmsLHEtoEOSManager.l
l
Definition: cmsLHEtoEOSManager.py:193
trklet::VarBase::name_
std::string name_
Definition: imath.h:296
trklet::VarBase::K_
double K_
Definition: imath.h:312
funct::pow
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:30
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
trklet::VarBase::nbits_
int nbits_
Definition: imath.h:311
trklet::VarBase::fval_
double fval_
Definition: imath.h:304
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37