Merge remote-tracking branch 'origin/tensor_core' into rtl

This commit is contained in:
Hansung Kim
2024-05-05 17:03:57 -07:00
16 changed files with 880 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 #(