Skip to content

Commit

Permalink
Bump common_verification and tech_cells_generic dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog authored and zarubaf committed Jan 28, 2021
1 parent 61e4de8 commit 7c5db41
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 30 deletions.
4 changes: 2 additions & 2 deletions Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ package:
- "Wolfgang Roenninger <[email protected]>"

dependencies:
common_verification: { git: "https://github.com/pulp-platform/common_verification.git", version: 0.1.1 }
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.1.1 }
common_verification: { git: "https://github.com/pulp-platform/common_verification.git", version: 0.2.0 }
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.2.3 }

export_include_dirs:
- include
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
### Changed
- updated `common_verification` and `tech_cells_generic` dependency versions

## 1.20.1 - 2021-01-21
### Changed
Expand Down
2 changes: 1 addition & 1 deletion ips_list.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
common_verification:
commit: v0.1.1
commit: v0.2.0
4 changes: 2 additions & 2 deletions test/cb_filter_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ module cb_filter_tb;
// Clock generator
// -------------
clk_rst_gen #(
.CLK_PERIOD ( TCycle ),
.RST_CLK_CYCLES ( 5 )
.ClkPeriod ( TCycle ),
.RstClkCycles ( 5 )
) i_clk_gen (
.clk_o ( clk ),
.rst_no ( rst_n )
Expand Down
2 changes: 1 addition & 1 deletion test/fifo_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ module fifo_tb #(

logic [3:0] done;

clk_rst_gen #(.CLK_PERIOD(TCLK), .RST_CLK_CYCLES(10)) i_clk_rst_gen (
clk_rst_gen #(.ClkPeriod(TCLK), .RstClkCycles(10)) i_clk_rst_gen (
.clk_o (clk),
.rst_no (rst_n)
);
Expand Down
28 changes: 14 additions & 14 deletions test/id_queue_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ module id_queue_tb #(
oup_data_valid;

clk_rst_gen #(
.CLK_PERIOD (TCLK),
.RST_CLK_CYCLES (5)
.ClkPeriod (TCLK),
.RstClkCycles (5)
) i_clk_rst_gen (
.clk_o (clk),
.rst_no (rst_n)
Expand Down Expand Up @@ -98,10 +98,10 @@ module id_queue_tb #(
// Random Input Driver
rand_stream_mst #(
.data_t (queue_t),
.MIN_WAIT_CYCLES (INP_MIN_WAIT_CYCLES),
.MAX_WAIT_CYCLES (INP_MAX_WAIT_CYCLES),
.APPL_DELAY (TA),
.ACQ_DELAY (TT)
.MinWaitCycles (INP_MIN_WAIT_CYCLES),
.MaxWaitCycles (INP_MAX_WAIT_CYCLES),
.ApplDelay (TA),
.AcqDelay (TT)
) i_inp_mst (
.clk_i (clk),
.rst_ni (rst_n),
Expand All @@ -116,10 +116,10 @@ module id_queue_tb #(
// Random Output Driver
rand_stream_mst #(
.data_t (logic),
.MIN_WAIT_CYCLES (OUP_MIN_WAIT_CYCLES),
.MAX_WAIT_CYCLES (OUP_MAX_WAIT_CYCLES),
.APPL_DELAY (TA),
.ACQ_DELAY (TT)
.MinWaitCycles (OUP_MIN_WAIT_CYCLES),
.MaxWaitCycles (OUP_MAX_WAIT_CYCLES),
.ApplDelay (TA),
.AcqDelay (TT)
) i_oup_mst (
.clk_i (clk),
.rst_ni (rst_n),
Expand All @@ -132,10 +132,10 @@ module id_queue_tb #(
// Random Exists Driver
rand_stream_mst #(
.data_t (exists_t),
.MIN_WAIT_CYCLES (OUP_MIN_WAIT_CYCLES),
.MAX_WAIT_CYCLES (OUP_MAX_WAIT_CYCLES),
.APPL_DELAY (TA),
.ACQ_DELAY (TT)
.MinWaitCycles (OUP_MIN_WAIT_CYCLES),
.MaxWaitCycles (OUP_MAX_WAIT_CYCLES),
.ApplDelay (TA),
.AcqDelay (TT)
) i_exists_mst (
.clk_i (clk),
.rst_ni (rst_n),
Expand Down
4 changes: 2 additions & 2 deletions test/rr_arb_tree_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ module rr_arb_tree_tb #(

// clock and rst gen
clk_rst_gen #(
.CLK_PERIOD ( CyclTime ),
.RST_CLK_CYCLES ( 5 )
.ClkPeriod ( CyclTime ),
.RstClkCycles ( 5 )
) i_clk_rst_gen (
.clk_o ( clk ),
.rst_no ( rst_n )
Expand Down
4 changes: 2 additions & 2 deletions test/stream_omega_net_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ module stream_omega_net_tb #(

// clock generator
clk_rst_gen #(
.CLK_PERIOD ( CyclTime ),
.RST_CLK_CYCLES ( 5 )
.ClkPeriod ( CyclTime ),
.RstClkCycles ( 5 )
) i_clk_rst_gen (
.clk_o ( clk ),
.rst_no ( rst_n )
Expand Down
4 changes: 2 additions & 2 deletions test/stream_to_mem_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ module stream_to_mem_tb #(

// CLK generator
clk_rst_gen #(
.CLK_PERIOD ( CyclTime ),
.RST_CLK_CYCLES ( 10 )
.ClkPeriod ( CyclTime ),
.RstClkCycles ( 10 )
) i_clk_rst_gen (
.clk_o ( clk ),
.rst_no ( rst_n )
Expand Down
4 changes: 2 additions & 2 deletions test/stream_xbar_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ module stream_xbar_tb #(

// clock generator
clk_rst_gen #(
.CLK_PERIOD ( CyclTime ),
.RST_CLK_CYCLES ( 5 )
.ClkPeriod ( CyclTime ),
.RstClkCycles ( 5 )
) i_clk_rst_gen (
.clk_o ( clk ),
.rst_no ( rst_n )
Expand Down
4 changes: 2 additions & 2 deletions test/sub_per_hash_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ module sub_per_hash_tb;
// Clock generator
// -------------
clk_rst_gen #(
.CLK_PERIOD ( TCycle ),
.RST_CLK_CYCLES ( 1 )
.ClkPeriod ( TCycle ),
.RstClkCycles ( 1 )
) i_clk_gen (
.clk_o ( clk ),
.rst_no ( rst_n )
Expand Down

0 comments on commit 7c5db41

Please sign in to comment.