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/gfx_mat_mat.sv | |
| parent | 09fcdbe01553385658fe437dcb1777008c0ceb39 (diff) | |
rtl/gfx: rename modules
Diffstat (limited to '')
| -rw-r--r-- | rtl/gfx/gfx_mat_mat.sv (renamed from rtl/gfx/mat_mat_mul.sv) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/gfx/mat_mat_mul.sv b/rtl/gfx/gfx_mat_mat.sv index 85ff7d6..d03a648 100644 --- a/rtl/gfx/mat_mat_mul.sv +++ b/rtl/gfx/gfx_mat_mat.sv @@ -1,6 +1,6 @@ `include "gfx/gfx_defs.sv" -module mat_mat_mul +module gfx_mat_mat ( input logic clk, rst_n, @@ -26,13 +26,13 @@ module mat_mat_mul assign mul_in_valid = in_valid || in_index != `INDEX4_MIN; assign mul_out_ready = out_ready || out_index != `INDEX4_MAX; - transpose transpose_b + gfx_transpose transpose_b ( .in(b), .out(b_transpose) ); - mat_vec_mul mul + gfx_mat_vec mul ( .a(in_index == `INDEX4_MIN ? a : a_hold), .x(mul_b[in_index]), @@ -44,7 +44,7 @@ module mat_mat_mul .* ); - transpose transpose_q + gfx_transpose transpose_q ( .in(q_transpose), .out(q) |
