CMS 3D CMS Logo

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

#include <imath.h>

Inheritance diagram for trklet::VarShift:
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
 
 VarShift (imathGlobals *globals, std::string name, VarBase *p1, int shift)
 
 ~VarShift () 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 (int debug_level)
 
bool calculate ()
 
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 shift_
 
- 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 735 of file imath.h.

Constructor & Destructor Documentation

◆ VarShift()

trklet::VarShift::VarShift ( imathGlobals globals,
std::string  name,
VarBase p1,
int  shift 
)
inline

Definition at line 737 of file imath.h.

References trklet::VarBase::K(), trklet::VarBase::K_, trklet::VarBase::Kmap(), trklet::VarBase::Kmap_, trklet::VarBase::nbits(), trklet::VarBase::nbits_, trklet::VarBase::op_, trklet::VarBase::p1(), trklet::VarBase::shift(), and shift_.

738  : VarBase(globals, name, p1, nullptr, nullptr, 0) {
739  op_ = "shift";
740  shift_ = shift;
741 
742  nbits_ = p1->nbits() - shift;
743  Kmap_ = p1->Kmap();
744  K_ = p1->K();
745  }
std::string name() const
Definition: imath.h:207
int nbits() const
Definition: imath.h:243
int shift() const
Definition: imath.h:247
VarBase(imathGlobals *globals, std::string name, VarBase *p1, VarBase *p2, VarBase *p3, int l)
Definition: imath.h:161
std::string op_
Definition: imath.h:300
VarBase * p1() const
Definition: imath.h:209
std::map< std::string, int > Kmap() const
Definition: imath.h:244
double K() const
Definition: imath.h:246
std::map< std::string, int > Kmap_
Definition: imath.h:313
double K_
Definition: imath.h:312

◆ ~VarShift()

trklet::VarShift::~VarShift ( )
overridedefault

Member Function Documentation

◆ local_calculate()

void VarShift::local_calculate ( )
overridevirtual

Reimplemented from trklet::VarBase.

Definition at line 155 of file imath_calculate.cc.

References trklet::VarBase::fval(), trklet::VarBase::fval_, trklet::VarBase::ival(), trklet::VarBase::ival_, trklet::VarBase::p1_, funct::pow(), and shift_.

155  {
156  fval_ = p1_->fval() * pow(2, -shift_);
157  ival_ = p1_->ival();
158  if (shift_ > 0)
159  ival_ = ival_ >> shift_;
160  if (shift_ < 0)
161  ival_ = ival_ << (-shift_);
162 }
double fval() const
Definition: imath.h:212
VarBase * p1_
Definition: imath.h:297
long int ival_
Definition: imath.h:305
long int ival() const
Definition: imath.h:213
double fval_
Definition: imath.h:304
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29

◆ print() [1/2]

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

Reimplemented from trklet::VarBase.

Definition at line 252 of file imath_Verilog.cc.

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

252  {
253  assert(p1_);
254  assert(l2 == 0);
255  assert(l3 == 0);
256  std::string n1 = p1_->name();
257  if (l1 > 0)
258  n1 = n1 + "_delay" + itos(l1);
259  std::string o1 = n1;
260  if (shift_ > 0)
261  o1 = o1 + ">>>" + itos(shift_);
262  if (shift_ < 0)
263  o1 = o1 + "<<" + itos(-shift_);
264 
265  std::string t = "wire signed [" + itos(nbits_ - 1) + ":0]" + name_ + ";\n";
266  t += "assign " + name_ + " = " + o1;
267  fs << "// " << nbits_ << " bits \t " << kstring() << "\t" << K_ << "\n" << t << ";\n";
268 }
std::string name() const
Definition: imath.h:207
VarBase * p1_
Definition: imath.h:297
std::string kstring() const
Definition: imath.cc:18
assert(be >=bs)
static std::string itos(int i)
Definition: imath.cc:16
std::string name_
Definition: imath.h:296
double K_
Definition: imath.h:312

◆ print() [2/2]

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

Reimplemented from trklet::VarBase.

Definition at line 229 of file imath_HLS.cc.

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

229  {
230  assert(p1_);
231  assert(l1 == 0);
232  assert(l2 == 0);
233  assert(l3 == 0);
234  std::string n1 = p1_->name();
235  std::string o1 = n1;
236  if (shift_ > 0)
237  o1 = o1 + ">>" + itos(shift_);
238  if (shift_ < 0)
239  o1 = "ap_int<" + itos(nbits_) + ">(" + o1 + ")<<" + itos(-shift_);
240 
241  std::string t = "const ap_int<" + itos(nbits_) + "> " + name_ + " = " + o1 + ";\n";
242  fs << "// " << nbits_ << " bits \t " << kstring() << "\t" << K_ << "\n" << t << ";\n";
243 }
std::string name() const
Definition: imath.h:207
VarBase * p1_
Definition: imath.h:297
std::string kstring() const
Definition: imath.cc:18
assert(be >=bs)
static std::string itos(int i)
Definition: imath.cc:16
std::string name_
Definition: imath.h:296
double K_
Definition: imath.h:312

Member Data Documentation

◆ shift_

int trklet::VarShift::shift_
protected

Definition at line 752 of file imath.h.

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