summaryrefslogtreecommitdiff
path: root/rtl/gfx/mat_vec_mul.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-02 22:19:26 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-10 01:43:02 -0600
commitd5de20fade70a0d454e3aa0087313ca715ff8759 (patch)
tree55751c829e989500972c56f05a7b0cb5e4e07621 /rtl/gfx/mat_vec_mul.sv
parent09fcdbe01553385658fe437dcb1777008c0ceb39 (diff)
rtl/gfx: rename modules
Diffstat (limited to '')
-rw-r--r--rtl/gfx/gfx_mat_vec.sv (renamed from rtl/gfx/mat_vec_mul.sv)8
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/gfx/mat_vec_mul.sv b/rtl/gfx/gfx_mat_vec.sv
index 9f5dcae..4be4976 100644
--- a/rtl/gfx/mat_vec_mul.sv
+++ b/rtl/gfx/gfx_mat_vec.sv
@@ -1,6 +1,6 @@
`include "gfx/gfx_defs.sv"
-module mat_vec_mul
+module gfx_mat_vec
(
input logic clk,
rst_n,
@@ -17,7 +17,7 @@ module mat_vec_mul
logic stall_mul, stall_fold, mul_ready, mul_valid, feedback, feedback_last;
- pipeline_flow #(.STAGES(`FP_MUL_STAGES)) mul
+ gfx_pipeline_flow #(.STAGES(`FP_MUL_STAGES)) mul
(
.stall(stall_mul),
.out_ready(mul_ready),
@@ -25,7 +25,7 @@ module mat_vec_mul
.*
);
- fold_flow fold
+ gfx_fold_flow fold
(
.stall(stall_fold),
.in_ready(mul_ready),
@@ -36,7 +36,7 @@ module mat_vec_mul
genvar i;
generate
for (i = 0; i < `VECS_PER_MAT; ++i) begin: dots
- vec_dot dot_i
+ gfx_dot dot_i
(
.a(a[i]),
.b(x),