mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-19 11:34:59 -04:00
minor update
This commit is contained in:
parent
d16aee3ecd
commit
45ed8abf22
2 changed files with 11 additions and 11 deletions
|
@ -63,14 +63,6 @@ module VX_stream_xbar #(
|
|||
.data_out (per_output_ready_in_w)
|
||||
);
|
||||
|
||||
VX_transpose #(
|
||||
.N (NUM_INPUTS),
|
||||
.M (NUM_OUTPUTS)
|
||||
) val_in_transpose (
|
||||
.data_in (per_output_valid_in),
|
||||
.data_out (per_output_valid_in_w)
|
||||
);
|
||||
|
||||
for (genvar i = 0; i < NUM_INPUTS; ++i) begin
|
||||
VX_decoder #(
|
||||
.N (OUT_WIDTH)
|
||||
|
@ -82,6 +74,14 @@ module VX_stream_xbar #(
|
|||
assign ready_in[i] = | per_output_ready_in_w[i];
|
||||
end
|
||||
|
||||
VX_transpose #(
|
||||
.N (NUM_INPUTS),
|
||||
.M (NUM_OUTPUTS)
|
||||
) val_in_transpose (
|
||||
.data_in (per_output_valid_in),
|
||||
.data_out (per_output_valid_in_w)
|
||||
);
|
||||
|
||||
for (genvar i = 0; i < NUM_OUTPUTS; ++i) begin
|
||||
VX_stream_arb #(
|
||||
.NUM_INPUTS (NUM_INPUTS),
|
||||
|
|
6
third_party/Makefile
vendored
6
third_party/Makefile
vendored
|
@ -1,6 +1,6 @@
|
|||
all: fpnew softfloat ramulator
|
||||
all: cvfpu softfloat ramulator
|
||||
|
||||
fpnew:
|
||||
cvfpu:
|
||||
|
||||
softfloat:
|
||||
SPECIALIZE_TYPE=RISCV SOFTFLOAT_OPTS="-fPIC -DSOFTFLOAT_ROUND_ODD -DINLINE_LEVEL=5 -DSOFTFLOAT_FAST_DIV32TO16 -DSOFTFLOAT_FAST_DIV64TO32" $(MAKE) -C softfloat/build/Linux-x86_64-GCC
|
||||
|
@ -13,4 +13,4 @@ clean:
|
|||
$(MAKE) -C softfloat/build/Linux-x86_64-GCC clean
|
||||
rm -rf ramulator/build ramulator/libramulator.so
|
||||
|
||||
.PHONY: all fpnew softfloat ramulator
|
||||
.PHONY: all cvfpu softfloat ramulator
|
Loading…
Add table
Reference in a new issue