minor update
This commit is contained in:
@@ -78,6 +78,8 @@ module VX_alu_unit #(
|
|||||||
endcase
|
endcase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
// branch
|
||||||
|
|
||||||
wire is_jal = is_br_op && (br_op == `BR_JAL || br_op == `BR_JALR);
|
wire is_jal = is_br_op && (br_op == `BR_JAL || br_op == `BR_JALR);
|
||||||
wire [`NUM_THREADS-1:0][31:0] alu_jal_result = is_jal ? {`NUM_THREADS{alu_req_if.next_PC}} : alu_result;
|
wire [`NUM_THREADS-1:0][31:0] alu_jal_result = is_jal ? {`NUM_THREADS{alu_req_if.next_PC}} : alu_result;
|
||||||
|
|||||||
@@ -739,8 +739,9 @@ always @(posedge clk) begin
|
|||||||
end
|
end
|
||||||
|
|
||||||
VX_fifo_queue #(
|
VX_fifo_queue #(
|
||||||
.DATAW (CCI_RD_QUEUE_DATAW),
|
.DATAW (CCI_RD_QUEUE_DATAW),
|
||||||
.SIZE (CCI_RD_QUEUE_SIZE)
|
.SIZE (CCI_RD_QUEUE_SIZE),
|
||||||
|
.BUFFERED (1)
|
||||||
) cci_rd_req_queue (
|
) cci_rd_req_queue (
|
||||||
.clk (clk),
|
.clk (clk),
|
||||||
.reset (reset),
|
.reset (reset),
|
||||||
|
|||||||
@@ -79,17 +79,14 @@ run -all
|
|||||||
# compress FPGA output files
|
# compress FPGA output files
|
||||||
tar -zcvf output_files_1c.tar.gz `find ./build_fpga_1c -type f \( -iname \*.rpt -o -iname \*.txt -o -iname \*summary -o -iname \*.log \)`
|
tar -zcvf output_files_1c.tar.gz `find ./build_fpga_1c -type f \( -iname \*.rpt -o -iname \*.txt -o -iname \*summary -o -iname \*.log \)`
|
||||||
|
|
||||||
# compress VCD trace
|
# compress log trace
|
||||||
tar -zcvf run.log.tar.gz run.log
|
tar -zcvf run.log.tar.gz run.log
|
||||||
tar -cvjf trace.vcd.tar.bz2 trace.vcd run.log
|
tar -cvjf trace.vcd.tar.bz2 trace.vcd run.log
|
||||||
tar -cvjf trace.vcd.tar.bz2 build_ase_arria10_1c/work/run.log build_ase_arria10_1c/work/trace.vcd
|
tar -cvjf trace.vcd.tar.bz2 build_ase_arria10_1c/work/run.log build_ase_arria10_1c/work/trace.vcd
|
||||||
|
|
||||||
# decompress VCD trace
|
# decompress log trace
|
||||||
tar -zxvf vortex.vcd.tar.gz
|
tar -zxvf vortex.vcd.tar.gz
|
||||||
tar -xvf vortex.vcd.tar.bz2
|
tar -xvf vortex.vcd.tar.bz2
|
||||||
|
|
||||||
# fixing device resource busy issue when deleting /build_ase_1c/
|
|
||||||
lsof +D build_ase_1c
|
|
||||||
|
|
||||||
# quick off synthesis
|
# quick off synthesis
|
||||||
make core
|
make core
|
||||||
Reference in New Issue
Block a user