diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-21 01:17:26 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-21 18:00:48 -0600 |
| commit | 7f20f4493ef1938f0ea8e86dc16f5c058fe7e4f3 (patch) | |
| tree | 8068225a7068da4702e144e4ff588573c16e2b36 /rtl/gfx/gfx_swizzle.sv | |
| parent | de9a1bf57f6a6c70aef36da4eea024b44fe87470 (diff) | |
rtl/gfx: implement shuffler
Diffstat (limited to 'rtl/gfx/gfx_swizzle.sv')
| -rw-r--r-- | rtl/gfx/gfx_swizzle.sv | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/rtl/gfx/gfx_swizzle.sv b/rtl/gfx/gfx_swizzle.sv deleted file mode 100644 index 1a57c11..0000000 --- a/rtl/gfx/gfx_swizzle.sv +++ /dev/null @@ -1,19 +0,0 @@ -`include "gfx/gfx_defs.sv" - -module gfx_swizzle -( - input logic clk, - - input vec4 in, - input swizzle_lanes select, - input logic stall, - - output vec4 out -); - - always_ff @(posedge clk) - if (!stall) - for (integer i = 0; i < `FLOATS_PER_VEC; ++i) - out[i] <= in[select[i]]; - -endmodule |
