mirror of
https://github.com/pConst/basic_verilog.git
synced 2025-01-28 07:02:55 +08:00
Updated benchmark projects. Added 'benchmark_results.txt' that i got on my machine
This commit is contained in:
parent
d44ef08c2c
commit
68922a34d2
18
example_projects/benchmark_results.txt
Normal file
18
example_projects/benchmark_results.txt
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Compilation time results for reference benchmark projects
|
||||||
|
=========================================================
|
||||||
|
|
||||||
|
|
||||||
|
Xeon E5-2630 v4, RAM 32GB, Windows 7
|
||||||
|
------------------------------------
|
||||||
|
quartus_benchmark - 4m 58s ( Quartus Lite 17 )
|
||||||
|
vivado_benchmark - 5m 58s ( Vivado 2019.2 )
|
||||||
|
gowin_benchmark - 4m 15s ( Gowin_V1.9.6Beta )
|
||||||
|
ise_benchmark - 9m 10s ( ISE 12.4 )
|
||||||
|
|
||||||
|
|
||||||
|
Xeon E5-2630 v4, RAM 32GB, Windows 7, project files on RamDisk
|
||||||
|
--------------------------------------------------------------
|
||||||
|
quartus_benchmark - 4m 57s
|
||||||
|
vivado_benchmark - 5m 56s
|
@ -4,55 +4,82 @@
|
|||||||
//--------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------
|
||||||
|
|
||||||
// INFO --------------------------------------------------------------------------------
|
// INFO --------------------------------------------------------------------------------
|
||||||
// Dynamic delay for arbitrary signal
|
// Dynamic delay for arbitrary signal.
|
||||||
//
|
//
|
||||||
// CAUTION: The module intentionally does NOT implement error handling when
|
// Incoming data elements have WIDTH bits each. Module does serialization of
|
||||||
// LENGTH is not a multiple of 2. Please handle "out of range"
|
// input data and outputs flattened bits, based on provided selector value.
|
||||||
// checks externally.
|
// You can perform delays bit-wize, not just element-wize.
|
||||||
|
//
|
||||||
|
// CAUTION: Be careful selecting last, most-delayed "WIDTH" number of bits.
|
||||||
|
// The module intentionally does NOT implement "out of range"
|
||||||
|
// checks. Please handle them externally.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
||||||
|
|
||||||
dynamic_delay #(
|
dynamic_delay #(
|
||||||
.LENGTH( 8 )
|
.LENGTH( 3 ),
|
||||||
//.SEL_W( 3 )
|
.WIDTH( 4 )
|
||||||
) DD1 (
|
) M (
|
||||||
.clk( clk ),
|
.clk( clk ),
|
||||||
.nrst( 1'b1 ),
|
.nrst( nrst ),
|
||||||
.ena( 1'b1 ),
|
.ena( 1'b1 ),
|
||||||
.in( ),
|
.in( in_data[3:0] ),
|
||||||
.sel( ),
|
.sel( sel[3:0] ),
|
||||||
.out( )
|
.out( out_data[3:0] )
|
||||||
);
|
);
|
||||||
|
|
||||||
--- INSTANTIATION TEMPLATE END ---*/
|
--- INSTANTIATION TEMPLATE END ---*/
|
||||||
|
|
||||||
|
|
||||||
module dynamic_delay #( parameter
|
module dynamic_delay #( parameter
|
||||||
LENGTH = 8, // maximum delay chain width
|
LENGTH = 63, // maximum delay chain length
|
||||||
SEL_W = $clog2(LENGTH) // output selector width
|
WIDTH = 4, // data width
|
||||||
|
|
||||||
|
SEL_W = $clog2( (LENGTH+1)*WIDTH ) // output selector width
|
||||||
|
// plus one is for zero delay element
|
||||||
)(
|
)(
|
||||||
input clk,
|
input clk,
|
||||||
input nrst,
|
input nrst,
|
||||||
input ena,
|
input ena,
|
||||||
input in,
|
input [WIDTH-1:0] in, // input data
|
||||||
|
// bit in[0] is the "oldest" one
|
||||||
|
// bit in[WIDTH] is considered the most recent
|
||||||
input [SEL_W-1:0] sel, // output selector
|
input [SEL_W-1:0] sel, // output selector
|
||||||
output logic out
|
output logic [WIDTH-1:0] out // output data
|
||||||
);
|
);
|
||||||
|
|
||||||
logic [(LENGTH-1):0] data = 0;
|
|
||||||
|
|
||||||
|
logic [(LENGTH+1)-1:0][WIDTH-1:0] data = '0;
|
||||||
|
|
||||||
|
// packed vector includes extra bits
|
||||||
|
logic [(LENGTH+1)*WIDTH-1:0] pack_data;
|
||||||
|
assign pack_data[(LENGTH+1)*WIDTH-1:0] = data;
|
||||||
|
|
||||||
integer i;
|
integer i;
|
||||||
always_ff @(posedge clk) begin
|
always_ff @(posedge clk) begin
|
||||||
if( ~nrst ) begin
|
if( ~nrst ) begin
|
||||||
data[(LENGTH-1):0] <= 0;
|
// reset all data except zero element
|
||||||
out <= 0;
|
for( i=1; i<(LENGTH+1); i=i+1 ) begin
|
||||||
end else if (ena) begin
|
data[i][WIDTH-1:0] <= '0;
|
||||||
data[0] <= in;
|
|
||||||
for (i=1; i<LENGTH; i=i+1) begin
|
|
||||||
data[i] <= data[i-1];
|
|
||||||
end
|
end
|
||||||
out <= data[sel[SEL_W-1:0]];
|
end else if (ena) begin
|
||||||
|
for( i=1; i<(LENGTH+1); i=i+1 ) begin
|
||||||
|
data[i][WIDTH-1:0] <= data[i-1][WIDTH-1:0];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
integer j;
|
||||||
|
always_comb begin
|
||||||
|
// zero element assignment
|
||||||
|
data[0][WIDTH-1:0] <= in[WIDTH-1:0];
|
||||||
|
|
||||||
|
// output selector, sel==0 gives non-delayed output
|
||||||
|
for( j=0; j<WIDTH; j=j+1 ) begin
|
||||||
|
out[j] <= pack_data[sel[SEL_W-1:0]+j];
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ module main(
|
|||||||
|
|
||||||
dynamic_delay #(
|
dynamic_delay #(
|
||||||
.LENGTH( `LENGTH ),
|
.LENGTH( `LENGTH ),
|
||||||
|
.WIDTH( 1 ),
|
||||||
.SEL_W( `SEL_W )
|
.SEL_W( `SEL_W )
|
||||||
) dd [`WIDTH-1:0] (
|
) dd [`WIDTH-1:0] (
|
||||||
.clk( {`WIDTH{clk}} ),
|
.clk( {`WIDTH{clk}} ),
|
||||||
|
@ -4,55 +4,82 @@
|
|||||||
//--------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------
|
||||||
|
|
||||||
// INFO --------------------------------------------------------------------------------
|
// INFO --------------------------------------------------------------------------------
|
||||||
// Dynamic delay for arbitrary signal
|
// Dynamic delay for arbitrary signal.
|
||||||
//
|
//
|
||||||
// CAUTION: The module intentionally does NOT implement error handling when
|
// Incoming data elements have WIDTH bits each. Module does serialization of
|
||||||
// LENGTH is not a multiple of 2. Please handle "out of range"
|
// input data and outputs flattened bits, based on provided selector value.
|
||||||
// checks externally.
|
// You can perform delays bit-wize, not just element-wize.
|
||||||
|
//
|
||||||
|
// CAUTION: Be careful selecting last, most-delayed "WIDTH" number of bits.
|
||||||
|
// The module intentionally does NOT implement "out of range"
|
||||||
|
// checks. Please handle them externally.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
||||||
|
|
||||||
dynamic_delay #(
|
dynamic_delay #(
|
||||||
.LENGTH( 8 )
|
.LENGTH( 3 ),
|
||||||
//.SEL_W( 3 )
|
.WIDTH( 4 )
|
||||||
) DD1 (
|
) M (
|
||||||
.clk( clk ),
|
.clk( clk ),
|
||||||
.nrst( 1'b1 ),
|
.nrst( nrst ),
|
||||||
.ena( 1'b1 ),
|
.ena( 1'b1 ),
|
||||||
.in( ),
|
.in( in_data[3:0] ),
|
||||||
.sel( ),
|
.sel( sel[3:0] ),
|
||||||
.out( )
|
.out( out_data[3:0] )
|
||||||
);
|
);
|
||||||
|
|
||||||
--- INSTANTIATION TEMPLATE END ---*/
|
--- INSTANTIATION TEMPLATE END ---*/
|
||||||
|
|
||||||
|
|
||||||
module dynamic_delay #( parameter
|
module dynamic_delay #( parameter
|
||||||
LENGTH = 8, // maximum delay chain width
|
LENGTH = 63, // maximum delay chain length
|
||||||
SEL_W = $clog2(LENGTH) // output selector width
|
WIDTH = 4, // data width
|
||||||
|
|
||||||
|
SEL_W = $clog2( (LENGTH+1)*WIDTH ) // output selector width
|
||||||
|
// plus one is for zero delay element
|
||||||
)(
|
)(
|
||||||
input clk,
|
input clk,
|
||||||
input nrst,
|
input nrst,
|
||||||
input ena,
|
input ena,
|
||||||
input in,
|
input [WIDTH-1:0] in, // input data
|
||||||
|
// bit in[0] is the "oldest" one
|
||||||
|
// bit in[WIDTH] is considered the most recent
|
||||||
input [SEL_W-1:0] sel, // output selector
|
input [SEL_W-1:0] sel, // output selector
|
||||||
output logic out
|
output logic [WIDTH-1:0] out // output data
|
||||||
);
|
);
|
||||||
|
|
||||||
logic [(LENGTH-1):0] data = 0;
|
|
||||||
|
|
||||||
|
logic [(LENGTH+1)-1:0][WIDTH-1:0] data = '0;
|
||||||
|
|
||||||
|
// packed vector includes extra bits
|
||||||
|
logic [(LENGTH+1)*WIDTH-1:0] pack_data;
|
||||||
|
assign pack_data[(LENGTH+1)*WIDTH-1:0] = data;
|
||||||
|
|
||||||
integer i;
|
integer i;
|
||||||
always_ff @(posedge clk) begin
|
always_ff @(posedge clk) begin
|
||||||
if( ~nrst ) begin
|
if( ~nrst ) begin
|
||||||
data[(LENGTH-1):0] <= 0;
|
// reset all data except zero element
|
||||||
out <= 0;
|
for( i=1; i<(LENGTH+1); i=i+1 ) begin
|
||||||
end else if (ena) begin
|
data[i][WIDTH-1:0] <= '0;
|
||||||
data[0] <= in;
|
|
||||||
for (i=1; i<LENGTH; i=i+1) begin
|
|
||||||
data[i] <= data[i-1];
|
|
||||||
end
|
end
|
||||||
out <= data[sel[SEL_W-1:0]];
|
end else if (ena) begin
|
||||||
|
for( i=1; i<(LENGTH+1); i=i+1 ) begin
|
||||||
|
data[i][WIDTH-1:0] <= data[i-1][WIDTH-1:0];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
integer j;
|
||||||
|
always_comb begin
|
||||||
|
// zero element assignment
|
||||||
|
data[0][WIDTH-1:0] <= in[WIDTH-1:0];
|
||||||
|
|
||||||
|
// output selector, sel==0 gives non-delayed output
|
||||||
|
for( j=0; j<WIDTH; j=j+1 ) begin
|
||||||
|
out[j] <= pack_data[sel[SEL_W-1:0]+j];
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ module main(
|
|||||||
|
|
||||||
dynamic_delay #(
|
dynamic_delay #(
|
||||||
.LENGTH( `LENGTH ),
|
.LENGTH( `LENGTH ),
|
||||||
|
.WIDTH( 1 ),
|
||||||
.SEL_W( `SEL_W )
|
.SEL_W( `SEL_W )
|
||||||
) dd [`WIDTH-1:0] (
|
) dd [`WIDTH-1:0] (
|
||||||
.clk( {`WIDTH{clk}} ),
|
.clk( {`WIDTH{clk}} ),
|
||||||
|
@ -4,55 +4,82 @@
|
|||||||
//--------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------
|
||||||
|
|
||||||
// INFO --------------------------------------------------------------------------------
|
// INFO --------------------------------------------------------------------------------
|
||||||
// Dynamic delay for arbitrary signal
|
// Dynamic delay for arbitrary signal.
|
||||||
//
|
//
|
||||||
// CAUTION: The module intentionally does NOT implement error handling when
|
// Incoming data elements have WIDTH bits each. Module does serialization of
|
||||||
// LENGTH is not a multiple of 2. Please handle "out of range"
|
// input data and outputs flattened bits, based on provided selector value.
|
||||||
// checks externally.
|
// You can perform delays bit-wize, not just element-wize.
|
||||||
|
//
|
||||||
|
// CAUTION: Be careful selecting last, most-delayed "WIDTH" number of bits.
|
||||||
|
// The module intentionally does NOT implement "out of range"
|
||||||
|
// checks. Please handle them externally.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
/* --- INSTANTIATION TEMPLATE BEGIN ---
|
||||||
|
|
||||||
dynamic_delay #(
|
dynamic_delay #(
|
||||||
.LENGTH( 8 )
|
.LENGTH( 3 ),
|
||||||
//.SEL_W( 3 )
|
.WIDTH( 4 )
|
||||||
) DD1 (
|
) M (
|
||||||
.clk( clk ),
|
.clk( clk ),
|
||||||
.nrst( 1'b1 ),
|
.nrst( nrst ),
|
||||||
.ena( 1'b1 ),
|
.ena( 1'b1 ),
|
||||||
.in( ),
|
.in( in_data[3:0] ),
|
||||||
.sel( ),
|
.sel( sel[3:0] ),
|
||||||
.out( )
|
.out( out_data[3:0] )
|
||||||
);
|
);
|
||||||
|
|
||||||
--- INSTANTIATION TEMPLATE END ---*/
|
--- INSTANTIATION TEMPLATE END ---*/
|
||||||
|
|
||||||
|
|
||||||
module dynamic_delay #( parameter
|
module dynamic_delay #( parameter
|
||||||
LENGTH = 8, // maximum delay chain width
|
LENGTH = 63, // maximum delay chain length
|
||||||
SEL_W = $clog2(LENGTH) // output selector width
|
WIDTH = 4, // data width
|
||||||
|
|
||||||
|
SEL_W = $clog2( (LENGTH+1)*WIDTH ) // output selector width
|
||||||
|
// plus one is for zero delay element
|
||||||
)(
|
)(
|
||||||
input clk,
|
input clk,
|
||||||
input nrst,
|
input nrst,
|
||||||
input ena,
|
input ena,
|
||||||
input in,
|
input [WIDTH-1:0] in, // input data
|
||||||
|
// bit in[0] is the "oldest" one
|
||||||
|
// bit in[WIDTH] is considered the most recent
|
||||||
input [SEL_W-1:0] sel, // output selector
|
input [SEL_W-1:0] sel, // output selector
|
||||||
output logic out
|
output logic [WIDTH-1:0] out // output data
|
||||||
);
|
);
|
||||||
|
|
||||||
logic [(LENGTH-1):0] data = 0;
|
|
||||||
|
|
||||||
|
logic [(LENGTH+1)-1:0][WIDTH-1:0] data = '0;
|
||||||
|
|
||||||
|
// packed vector includes extra bits
|
||||||
|
logic [(LENGTH+1)*WIDTH-1:0] pack_data;
|
||||||
|
assign pack_data[(LENGTH+1)*WIDTH-1:0] = data;
|
||||||
|
|
||||||
integer i;
|
integer i;
|
||||||
always_ff @(posedge clk) begin
|
always_ff @(posedge clk) begin
|
||||||
if( ~nrst ) begin
|
if( ~nrst ) begin
|
||||||
data[(LENGTH-1):0] <= 0;
|
// reset all data except zero element
|
||||||
out <= 0;
|
for( i=1; i<(LENGTH+1); i=i+1 ) begin
|
||||||
end else if (ena) begin
|
data[i][WIDTH-1:0] <= '0;
|
||||||
data[0] <= in;
|
|
||||||
for (i=1; i<LENGTH; i=i+1) begin
|
|
||||||
data[i] <= data[i-1];
|
|
||||||
end
|
end
|
||||||
out <= data[sel[SEL_W-1:0]];
|
end else if (ena) begin
|
||||||
|
for( i=1; i<(LENGTH+1); i=i+1 ) begin
|
||||||
|
data[i][WIDTH-1:0] <= data[i-1][WIDTH-1:0];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
integer j;
|
||||||
|
always_comb begin
|
||||||
|
// zero element assignment
|
||||||
|
data[0][WIDTH-1:0] <= in[WIDTH-1:0];
|
||||||
|
|
||||||
|
// output selector, sel==0 gives non-delayed output
|
||||||
|
for( j=0; j<WIDTH; j=j+1 ) begin
|
||||||
|
out[j] <= pack_data[sel[SEL_W-1:0]+j];
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ module main(
|
|||||||
|
|
||||||
dynamic_delay #(
|
dynamic_delay #(
|
||||||
.LENGTH( `LENGTH ),
|
.LENGTH( `LENGTH ),
|
||||||
|
.WIDTH( 1 ),
|
||||||
.SEL_W( `SEL_W )
|
.SEL_W( `SEL_W )
|
||||||
) dd [`WIDTH-1:0] (
|
) dd [`WIDTH-1:0] (
|
||||||
.clk( {`WIDTH{clk}} ),
|
.clk( {`WIDTH{clk}} ),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user