speeding up simulation using dedicated full dpi-based FPU core

This commit is contained in:
Blaise Tine
2021-01-06 18:44:06 -08:00
parent 2058718f0f
commit 2b8435471a
26 changed files with 990 additions and 430 deletions

View File

@@ -72,15 +72,13 @@ module Vortex (
for (genvar i = 0; i < `NUM_CLUSTERS; i++) begin
wire cluster_reset;
if (`NUM_CLUSTERS > 1) begin
reg cluster_reset_r;
always @(posedge clk) begin
cluster_reset_r <= reset;
end
assign cluster_reset = cluster_reset_r;
end else begin
assign cluster_reset = reset;
end
VX_reset_relay #(
.PASSTHRU (`NUM_CLUSTERS == 1)
) reset_relay (
.clk (clk),
.reset (reset),
.reset_out (cluster_reset)
);
VX_cluster #(
.CLUSTER_ID(i)