diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-02 22:19:26 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-10 01:43:02 -0600 |
| commit | d5de20fade70a0d454e3aa0087313ca715ff8759 (patch) | |
| tree | 55751c829e989500972c56f05a7b0cb5e4e07621 /rtl/gfx/mat_vec_mul.sv | |
| parent | 09fcdbe01553385658fe437dcb1777008c0ceb39 (diff) | |
rtl/gfx: rename modules
Diffstat (limited to 'rtl/gfx/mat_vec_mul.sv')
| -rw-r--r-- | rtl/gfx/mat_vec_mul.sv | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/rtl/gfx/mat_vec_mul.sv b/rtl/gfx/mat_vec_mul.sv deleted file mode 100644 index 9f5dcae..0000000 --- a/rtl/gfx/mat_vec_mul.sv +++ /dev/null @@ -1,49 +0,0 @@ -`include "gfx/gfx_defs.sv" - -module mat_vec_mul -( - input logic clk, - rst_n, - - input mat4 a, - input vec4 x, - input logic in_valid, - out_ready, - - output vec4 q, - output logic in_ready, - out_valid -); - - logic stall_mul, stall_fold, mul_ready, mul_valid, feedback, feedback_last; - - pipeline_flow #(.STAGES(`FP_MUL_STAGES)) mul - ( - .stall(stall_mul), - .out_ready(mul_ready), - .out_valid(mul_valid), - .* - ); - - fold_flow fold - ( - .stall(stall_fold), - .in_ready(mul_ready), - .in_valid(mul_valid), - .* - ); - - genvar i; - generate - for (i = 0; i < `VECS_PER_MAT; ++i) begin: dots - vec_dot dot_i - ( - .a(a[i]), - .b(x), - .q(q[i]), - .* - ); - end - endgenerate - -endmodule |
