mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 13:57:17 -04:00
merge
This commit is contained in:
parent
d2bc820909
commit
c39f98a8af
3 changed files with 20 additions and 5 deletions
|
@ -430,7 +430,10 @@ module VX_cluster #(
|
|||
// Snoop forwarding in
|
||||
.snp_fwdin_valid (core_snp_fwdin_valid),
|
||||
.snp_fwdin_tag (core_snp_fwdin_tag),
|
||||
.snp_fwdin_ready (core_snp_fwdin_ready)
|
||||
.snp_fwdin_ready (core_snp_fwdin_ready),
|
||||
|
||||
// Miss status
|
||||
`UNUSED_PIN (miss_vec)
|
||||
);
|
||||
|
||||
end else begin
|
||||
|
|
|
@ -135,7 +135,10 @@ module VX_mem_unit # (
|
|||
// Snoop forward in
|
||||
.snp_fwdin_valid (1'b0),
|
||||
.snp_fwdin_tag (0),
|
||||
`UNUSED_PIN (snp_fwdin_ready)
|
||||
`UNUSED_PIN (snp_fwdin_ready),
|
||||
|
||||
// Miss status
|
||||
`UNUSED_PIN (miss_vec)
|
||||
);
|
||||
|
||||
VX_cache #(
|
||||
|
@ -218,7 +221,10 @@ module VX_mem_unit # (
|
|||
// Snoop forward in
|
||||
.snp_fwdin_valid (1'b0),
|
||||
.snp_fwdin_tag (0),
|
||||
`UNUSED_PIN (snp_fwdin_ready)
|
||||
`UNUSED_PIN (snp_fwdin_ready),
|
||||
|
||||
// Miss status
|
||||
`UNUSED_PIN (miss_vec)
|
||||
);
|
||||
|
||||
VX_cache #(
|
||||
|
@ -300,7 +306,10 @@ module VX_mem_unit # (
|
|||
// Snoop forward in
|
||||
.snp_fwdin_valid (1'b0),
|
||||
.snp_fwdin_tag (0),
|
||||
`UNUSED_PIN (snp_fwdin_ready)
|
||||
`UNUSED_PIN (snp_fwdin_ready),
|
||||
|
||||
// Miss status
|
||||
`UNUSED_PIN (miss_vec)
|
||||
);
|
||||
|
||||
endmodule
|
||||
|
|
|
@ -453,7 +453,10 @@ module Vortex (
|
|||
// Snoop forwarding in
|
||||
.snp_fwdin_valid (cluster_snp_fwdin_valid),
|
||||
.snp_fwdin_tag (cluster_snp_fwdin_tag),
|
||||
.snp_fwdin_ready (cluster_snp_fwdin_ready)
|
||||
.snp_fwdin_ready (cluster_snp_fwdin_ready),
|
||||
|
||||
// Miss status
|
||||
`UNUSED_PIN (miss_vec)
|
||||
);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue