Skip to content

Commit

Permalink
fix typos mentioned in PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
soheilshahrouz committed Jan 28, 2025
1 parent 309eb9b commit 5a41a00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libs/libvtrutil/src/vtr_log.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* Three types of log message types are defined:
* - VTR_LOG : The standard 'info' type log message
* - VTR_LOG_WARN : A warning log message. This represents unusual condition that may indicate an issue but execution continues
* - VTR_LOG_WARN : A warning log message. This represents an unusual condition that may indicate an issue but execution continues
* - VTR_LOG_ERROR : An error log message. This represents a clear issue that should result in stopping the program execution.
* Please note that using this log message will not actually terminate the program. So a VtrError should be thrown
* after all the necessary VTR_LOG_ERROR messages are printed.
Expand Down
6 changes: 3 additions & 3 deletions vpr/src/base/blk_loc_registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ class BlkLocRegistry {
/// (blocks that are not locked down to a single location)
std::vector<ClusterBlockId> movable_blocks_;

///@brief Stores ClusterBlockId of all movable clustered of each block type
std::vector<std::vector<ClusterBlockId>> movable_blocks_per_type_;

public:

///@brief Stores ClusterBlockId of all movable clustered blocks of each block type
std::vector<std::vector<ClusterBlockId>> movable_blocks_per_type_;
const vtr::vector_map<ClusterBlockId, t_block_loc>& block_locs() const;
vtr::vector_map<ClusterBlockId, t_block_loc>& mutable_block_locs();

Expand Down

0 comments on commit 5a41a00

Please sign in to comment.