CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
trklet::VarNounits Class Reference

#include <imath.h>

Inheritance diagram for trklet::VarNounits:
trklet::VarBase

Public Member Functions

void local_calculate () override
 
void print (std::ofstream &fs, Verilog, int l1=0, int l2=0, int l3=0) override
 
void print (std::ofstream &fs, HLS, int l1=0, int l2=0, int l3=0) override
 
 VarNounits (imathGlobals *globals, std::string name, VarBase *p1, int ps=17)
 
 ~VarNounits () 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 ()
 
void calcDebug (int debug_level, long int ival_prev, bool &all_ok)
 
bool calculate (int debug_level=0)
 
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
 
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, Verilog)
 
void print_all (std::ofstream &fs, HLS)
 
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_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_step (int step, std::ofstream &fs, Verilog)
 
void print_step (int step, std::ofstream &fs, HLS)
 
void print_truncation (std::string &t, const std::string &o1, const int ps, Verilog) const
 
void print_truncation (std::string &t, const std::string &o1, const int ps, HLS) 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 ()
 

Protected Attributes

int cI_
 
int ps_
 
- 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_
 

Additional Inherited Members

- Static Public Member Functions inherited from trklet::VarBase
static void design_print (const std::vector< VarBase *> &v, std::ofstream &fs, Verilog)
 
static void design_print (const std::vector< VarBase *> &v, std::ofstream &fs, HLS)
 
static void hls_print (const 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 (const 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
 

Detailed Description

Definition at line 687 of file imath.h.

Constructor & Destructor Documentation

◆ VarNounits()

trklet::VarNounits::VarNounits ( imathGlobals globals,
std::string  name,
VarBase p1,
int  ps = 17 
)
inline

Definition at line 689 of file imath.h.

References HltBtagPostValidation_cff::c, cI_, trklet::VarBase::K(), trklet::VarBase::K_, trklet::VarBase::Kmap_, visualization-live-secondInstance_cfg::m, trklet::VarBase::nbits(), trklet::VarBase::nbits_, trklet::VarBase::op_, trklet::VarBase::p1(), conifer::pow(), ps_, and trklet::VarBase::shift().

690  : VarBase(globals, name, p1, nullptr, nullptr, MULT_LATENCY) {
691  op_ = "nounits";
692  ps_ = ps;
693  nbits_ = p1->nbits();
694 
695  int s1 = p1->shift();
696  double ki = p1->K() / pow(2, s1);
697  int m = log2(ki);
698 
699  K_ = pow(2, s1 + m);
700  Kmap_["2"] = s1 + m;
701  double c = ki * pow(2, -m);
702  cI_ = c * pow(2, ps_);
703  }
std::string name() const
Definition: imath.h:208
int nbits() const
Definition: imath.h:244
constexpr int pow(int x)
Definition: conifer.h:24
int shift() const
Definition: imath.h:248
VarBase(imathGlobals *globals, std::string name, VarBase *p1, VarBase *p2, VarBase *p3, int l)
Definition: imath.h:162
std::string op_
Definition: imath.h:301
#define MULT_LATENCY
Definition: imath.h:140
VarBase * p1() const
Definition: imath.h:210
double K() const
Definition: imath.h:247
std::map< std::string, int > Kmap_
Definition: imath.h:314
double K_
Definition: imath.h:313

◆ ~VarNounits()

trklet::VarNounits::~VarNounits ( )
overridedefault

Member Function Documentation

◆ local_calculate()

void VarNounits::local_calculate ( )
overridevirtual

Reimplemented from trklet::VarBase.

Definition at line 146 of file imath_calculate.cc.

References cI_, trklet::VarBase::fval(), trklet::VarBase::fval_, trklet::VarBase::ival(), trklet::VarBase::ival_, trklet::VarBase::p1_, and ps_.

146  {
147  fval_ = p1_->fval();
148  ival_ = (p1_->ival() * cI_) >> ps_;
149 }
double fval() const
Definition: imath.h:213
VarBase * p1_
Definition: imath.h:298
long int ival_
Definition: imath.h:306
long int ival() const
Definition: imath.h:214
double fval_
Definition: imath.h:305

◆ print() [1/2]

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

Reimplemented from trklet::VarBase.

Definition at line 191 of file imath_Verilog.cc.

References cms::cuda::assert(), cI_, compareTotals::fs, trklet::VarBase::itos(), trklet::VarBase::K_, trklet::VarBase::kstring(), trklet::VarBase::name(), trklet::VarBase::nbits_, CastorDigiReco::o1, trklet::VarBase::p1_, trklet::VarBase::print_truncation(), ps_, AlCaHLTBitMon_QueryRunRegistry::string, submitPVValidationJobs::t, and trklet::VarBase::verilog.

191  {
192  assert(p1_);
193  assert(l2 == 0);
194  assert(l3 == 0);
195  std::string n1 = p1_->name();
196  if (l1 > 0)
197  n1 = n1 + "_delay" + itos(l1);
198  std::string o1 = "(" + n1 + " * " + itos(cI_) + ")";
199 
200  std::string t = "";
202  fs << "// " << nbits_ << " bits \t " << kstring() << "\t" << K_ << "\n" << t;
203 }
std::string name() const
Definition: imath.h:208
VarBase * p1_
Definition: imath.h:298
std::string kstring() const
Definition: imath.cc:18
assert(be >=bs)
static struct trklet::VarBase::Verilog verilog
static std::string itos(int i)
Definition: imath.cc:16
void print_truncation(std::string &t, const std::string &o1, const int ps, Verilog) const
double K_
Definition: imath.h:313

◆ print() [2/2]

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

Reimplemented from trklet::VarBase.

Definition at line 174 of file imath_HLS.cc.

References cms::cuda::assert(), cI_, compareTotals::fs, trklet::VarBase::hls, trklet::VarBase::itos(), trklet::VarBase::K_, trklet::VarBase::kstring(), trklet::VarBase::name(), trklet::VarBase::nbits_, CastorDigiReco::o1, trklet::VarBase::p1_, trklet::VarBase::print_truncation(), ps_, AlCaHLTBitMon_QueryRunRegistry::string, and submitPVValidationJobs::t.

174  {
175  assert(p1_);
176  assert(l1 == 0);
177  assert(l2 == 0);
178  assert(l3 == 0);
179  std::string n1 = p1_->name();
180  std::string o1 = "(" + n1 + " * " + itos(cI_) + ")";
181 
182  std::string t = "";
184  fs << "// " << nbits_ << " bits \t " << kstring() << "\t" << K_ << "\n" << t;
185 }
std::string name() const
Definition: imath.h:208
VarBase * p1_
Definition: imath.h:298
std::string kstring() const
Definition: imath.cc:18
assert(be >=bs)
static std::string itos(int i)
Definition: imath.cc:16
static struct trklet::VarBase::HLS hls
void print_truncation(std::string &t, const std::string &o1, const int ps, Verilog) const
double K_
Definition: imath.h:313

Member Data Documentation

◆ cI_

int trklet::VarNounits::cI_
protected

Definition at line 712 of file imath.h.

Referenced by local_calculate(), print(), and VarNounits().

◆ ps_

int trklet::VarNounits::ps_
protected

Definition at line 711 of file imath.h.

Referenced by local_calculate(), print(), and VarNounits().