i kinda forgot most of changes

This commit is contained in:
joshua
2024-05-04 23:01:47 -07:00
parent d8f9359fae
commit 5bd25985c6
16 changed files with 882 additions and 24 deletions

View File

@@ -1,7 +1,8 @@
`include "VX_fpu_define.vh"
module VX_tensor_dpu #(
parameter ISW,
parameter OCTET
) (
input clk,
input reset,
@@ -21,6 +22,12 @@ module VX_tensor_dpu #(
always @(*) begin
dpi_hmma(valid_in, A_tile, B_tile, C_tile, result_hmma);
end
always @(posedge clk) begin
if (~reset && valid_in) begin
dpi_print_results(int'(ISW), int'(OCTET), A_tile, B_tile, C_tile, result_hmma);
end
end
VX_shift_register #(