Skip to content

Commit 7bf5c1f

Browse files
committed
[vpr][base] remove var from doxygen comment
1 parent 8d6ce93 commit 7bf5c1f

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

libs/libarchfpga/src/physical_types.h

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1604,98 +1604,98 @@ enum e_Fc_type {
16041604
* used if the route_type is DETAILED. [0 .. det_routing_arch.num_segment]
16051605
*/
16061606
struct t_segment_inf {
1607-
/** @var name
1607+
/**
16081608
* @brief The name of the segment type
16091609
*/
16101610
std::string name;
16111611

1612-
/** @var frequency
1612+
/**
16131613
* @brief ratio of tracks which are of this segment type.
16141614
*/
16151615
int frequency;
16161616

1617-
/** @var length
1617+
/**
16181618
* @brief Length (in clbs) of the segment.
16191619
*/
16201620
int length;
16211621

1622-
/** @var arch_wire_switch
1622+
/**
16231623
* @brief Index of the switch type that connects other wires to this segment.
16241624
* Note that this index is in relation to the switches from the architecture file,
16251625
* not the expanded list of switches that is built at the end of build_rr_graph.
16261626
*/
16271627
short arch_wire_switch;
16281628

1629-
/** @var arch_opin_switch
1629+
/**
16301630
* @brief Index of the switch type that connects output pins to this segment.
16311631
* Note that this index is in relation to the switches from the architecture file,
16321632
* not the expanded list of switches that is built at the end of build_rr_graph.
16331633
*/
16341634
short arch_opin_switch;
16351635

1636-
/** @var arch_wire_switch_dec
1636+
/**
16371637
* @brief Same as arch_wire_switch but used only for decremental tracks if it is
16381638
* specified in the architecture file. If -1, this value was not set in the
16391639
* architecture file and arch_wire_switch should be used for "DEC_DIR" wire segments.
16401640
*/
16411641
short arch_wire_switch_dec = -1;
16421642

1643-
/** @var arch_opin_switch_dec
1643+
/**
16441644
* @brief Same as arch_opin_switch but used only for decremental tracks if
16451645
* it is specified in the architecture file. If -1, this value was not set in
16461646
* the architecture file and arch_opin_switch should be used for "DEC_DIR" wire segments.
16471647
*/
16481648
short arch_opin_switch_dec = -1;
16491649

1650-
/** @var arch_opin_between_dice_switch
1650+
/**
16511651
* @brief Index of the switch type that connects output pins (OPINs) to this
16521652
* segment from another die (layer). Note that this index is in relation to
16531653
* the switches from the architecture file, not the expanded list of switches
16541654
* that is built at the end of build_rr_graph.
16551655
*/
16561656
short arch_inter_die_switch = -1;
16571657

1658-
/** @var frac_cb
1658+
/**
16591659
* @brief The fraction of logic blocks along its length to which this segment can connect.
16601660
* (i.e. internal population).
16611661
*/
16621662
float frac_cb;
16631663

1664-
/** @var frac_sb
1664+
/**
16651665
* @brief The fraction of the length + 1 switch blocks along the segment to which the segment can connect.
16661666
* Segments that aren't long lines must connect to at least two switch boxes.
16671667
*/
16681668
float frac_sb;
16691669

16701670
bool longline;
16711671

1672-
/** @var Rmetal
1672+
/**
16731673
* @brief The resistance of a routing track, per unit logic block length. */
16741674
float Rmetal;
16751675

1676-
/** @var Cmetal
1676+
/**
16771677
* @brief The capacitance of a routing track, per unit logic block length. */
16781678
float Cmetal;
16791679

16801680
enum e_directionality directionality;
16811681

1682-
/** @var parallel_axis
1682+
/**
16831683
* @brief Defines what axis the segment is parallel to. See e_parallel_axis
16841684
* comments for more details on the values.
16851685
*/
16861686
enum e_parallel_axis parallel_axis;
16871687

1688-
/** @var cb
1688+
/**
16891689
* @brief A vector of booleans indicating whether the segment can connect to a logic block.
16901690
*/
16911691
std::vector<bool> cb;
16921692

1693-
/** @var sb
1693+
/**
16941694
* @brief A vector of booleans indicating whether the segment can connect to a switch block.
16951695
*/
16961696
std::vector<bool> sb;
16971697

1698-
/** @var seg_index
1698+
/**
16991699
* @brief The index of the segment as stored in the appropriate Segs list.
17001700
* Upon loading the architecture, we use this field to keep track of the
17011701
* segment's index in the unified segment_inf vector. This is useful when
@@ -1704,7 +1704,7 @@ struct t_segment_inf {
17041704
*/
17051705
int seg_index;
17061706

1707-
/** @var res_type
1707+
/**
17081708
* @brief Determines the routing network to which the segment belongs.
17091709
* Possible values are:
17101710
* - GENERAL: The segment is part of the general routing resources.

vpr/src/base/vpr_types.h

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1361,93 +1361,93 @@ struct t_det_routing_arch {
13611361
* @brief Lists detailed information about segmentation. [0 .. W-1].
13621362
*/
13631363
struct t_seg_details {
1364-
/** @var length
1364+
/**
13651365
* @brief Length (in clbs) of the segment.
13661366
*/
13671367
int length = 0;
13681368

1369-
/** @var start
1369+
/**
13701370
* @brief Index at which a segment starts in channel 0.
13711371
*/
13721372
int start = 0;
13731373

1374-
/** @var longline
1374+
/**
13751375
* @brief True if this segment spans the entire channel.
13761376
*/
13771377
bool longline = false;
13781378

1379-
/** @var sb
1379+
/**
13801380
* @brief [0..length]: true for every channel intersection, relative to the
13811381
* segment start, at which there is a switch box.
13821382
*/
13831383
std::unique_ptr<bool[]> sb;
13841384

1385-
/** @var cb
1385+
/**
13861386
* @brief [0..length]: true for every logic block along the segment at
13871387
* which there is a connection box.
13881388
*/
13891389
std::unique_ptr<bool[]> cb;
13901390

1391-
/** @var arch_wire_switch
1391+
/**
13921392
* @brief Index of the switch type that connects other wires to this segment.
13931393
* Note that this index is in relation to the switches from the architecture
13941394
* file, not the expanded list of switches that is built at the end of build_rr_graph.
13951395
*/
13961396
short arch_wire_switch = 0;
13971397

1398-
/** @var arch_opin_switch
1398+
/**
13991399
* @brief Index of the switch type that connects output pins (OPINs) *to* this segment.
14001400
* Note that this index is in relation to the switches from the architecture
14011401
* file, not the expanded list of switches that is built at the end of build_rr_graph.
14021402
*/
14031403
short arch_opin_switch = 0;
14041404

1405-
/** @var arch_opin_between_dice_switch
1405+
/**
14061406
* @brief Index of the switch type that connects output pins (OPINs) *to* this segment
14071407
* from *another dice*. Note that this index is in relation to the switches from the
14081408
* architecture file, not the expanded list of switches that is built at the end of
14091409
* build_rr_graph.
14101410
*/
14111411
short arch_inter_die_switch = 0;
14121412

1413-
/** @var Rmetal
1413+
/**
14141414
* @brief Resistance of a routing track, per unit logic block length.
14151415
*/
14161416
float Rmetal = 0;
14171417

1418-
/** @var Cmetal
1418+
/**
14191419
* @brief Capacitance of a routing track, per unit logic block length.
14201420
*/
14211421
float Cmetal = 0;
14221422

14231423
bool twisted = false;
14241424

1425-
/** @var direction
1425+
/**
14261426
* @brief Direction of the segment.
14271427
*/
14281428
enum Direction direction = Direction::NONE;
14291429

1430-
/** @var group_start
1430+
/**
14311431
* @brief Index of the first logic block in the group.
14321432
*/
14331433
int group_start = 0;
14341434

1435-
/** @var group_size
1435+
/**
14361436
* @brief Size of the group.
14371437
*/
14381438
int group_size = 0;
14391439

1440-
/** @var seg_start
1440+
/**
14411441
* @brief Index of the first logic block in the segment.
14421442
*/
14431443
int seg_start = 0;
14441444

1445-
/** @var seg_end
1445+
/**
14461446
* @brief Index of the last logic block in the segment.
14471447
*/
14481448
int seg_end = 0;
14491449

1450-
/** @var index
1450+
/**
14511451
* @brief index of the segment type used for this track.
14521452
* Note that this index will store the index of the segment
14531453
* relative to its **parallel** segment types, not all segments
@@ -1462,19 +1462,19 @@ struct t_seg_details {
14621462
*/
14631463
int index = 0;
14641464

1465-
/** @var abs_index
1465+
/**
14661466
* @brief index is relative to the segment_inf vec as stored in device_ctx.
14671467
* Note that the above vector is **unifies** both x-parallel and
14681468
* y-parallel segments and is loaded up originally in read_xml_arch_file.cpp
14691469
*/
14701470
int abs_index = 0;
14711471

1472-
/** @var Cmetal_per_m
1472+
/**
14731473
* @brief Used for power
14741474
*/
14751475
float Cmetal_per_m = 0;
14761476

1477-
/** @var type_name
1477+
/**
14781478
* @brief Name of the segment type.
14791479
*/
14801480
std::string type_name;

0 commit comments

Comments
 (0)