+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes minor update minor update minor update minor update minor update minor update cleanup cleanup cache bindings and memory perf refactory minor update minor update hw unit tests fixes minor update minor update minor update minor update minor update minor udpate minor update minor update minor update minor update minor update minor update minor update minor updates minor updates minor update minor update minor update minor update minor update minor update minor updates minor updates minor updates minor updates minor update minor update
118 lines
3.5 KiB
Systemverilog
118 lines
3.5 KiB
Systemverilog
// Copyright © 2019-2023
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
`include "VX_platform.vh"
|
|
|
|
// Fast encoder using parallel prefix computation
|
|
// Adapted from BaseJump STL: http://bjump.org/data_out.html
|
|
|
|
`TRACING_OFF
|
|
module VX_onehot_encoder #(
|
|
parameter N = 1,
|
|
parameter REVERSE = 0,
|
|
parameter MODEL = 1,
|
|
parameter LN = `LOG2UP(N)
|
|
) (
|
|
input wire [N-1:0] data_in,
|
|
output wire [LN-1:0] data_out,
|
|
output wire valid_out
|
|
);
|
|
if (N == 1) begin
|
|
|
|
assign data_out = data_in;
|
|
assign valid_out = data_in;
|
|
|
|
end else if (N == 2) begin
|
|
|
|
assign data_out = data_in[!REVERSE];
|
|
assign valid_out = (| data_in);
|
|
|
|
end else if (MODEL == 1) begin
|
|
localparam M = 1 << LN;
|
|
`IGNORE_UNOPTFLAT_BEGIN
|
|
wire [LN-1:0][M-1:0] addr;
|
|
wire [LN:0][M-1:0] v;
|
|
`IGNORE_UNOPTFLAT_END
|
|
|
|
// base case, also handle padding for non-power of two inputs
|
|
assign v[0] = REVERSE ? (M'(data_in) << (M - N)) : M'(data_in);
|
|
|
|
for (genvar lvl = 1; lvl < (LN+1); ++lvl) begin
|
|
localparam SN = 1 << (LN - lvl);
|
|
localparam SI = M / SN;
|
|
localparam SW = lvl;
|
|
|
|
for (genvar s = 0; s < SN; ++s) begin
|
|
`IGNORE_UNOPTFLAT_BEGIN
|
|
wire [1:0] vs = {v[lvl-1][s*SI+(SI>>1)], v[lvl-1][s*SI]};
|
|
`IGNORE_UNOPTFLAT_END
|
|
|
|
assign v[lvl][s*SI] = (| vs);
|
|
|
|
if (lvl == 1) begin
|
|
assign addr[lvl-1][s*SI +: SW] = vs[!REVERSE];
|
|
end else begin
|
|
assign addr[lvl-1][s*SI +: SW] = {
|
|
vs[!REVERSE],
|
|
addr[lvl-2][s*SI +: SW-1] | addr[lvl-2][s*SI+(SI>>1) +: SW-1]
|
|
};
|
|
end
|
|
end
|
|
end
|
|
|
|
assign data_out = addr[LN-1][LN-1:0];
|
|
assign valid_out = v[LN][0];
|
|
|
|
end else if (MODEL == 2 && REVERSE == 0) begin
|
|
|
|
for (genvar j = 0; j < LN; ++j) begin
|
|
wire [N-1:0] mask;
|
|
for (genvar i = 0; i < N; ++i) begin
|
|
assign mask[i] = i[j];
|
|
end
|
|
assign data_out[j] = | (mask & data_in);
|
|
end
|
|
|
|
assign valid_out = (| data_in);
|
|
|
|
end else begin
|
|
|
|
reg [LN-1:0] index_r;
|
|
|
|
if (REVERSE != 0) begin
|
|
always @(*) begin
|
|
index_r = 'x;
|
|
for (integer i = N-1; i >= 0; --i) begin
|
|
if (data_in[i]) begin
|
|
index_r = LN'(N-1-i);
|
|
end
|
|
end
|
|
end
|
|
end else begin
|
|
always @(*) begin
|
|
index_r = 'x;
|
|
for (integer i = 0; i < N; ++i) begin
|
|
if (data_in[i]) begin
|
|
index_r = LN'(i);
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
assign data_out = index_r;
|
|
assign valid_out = (| data_in);
|
|
end
|
|
|
|
endmodule
|
|
`TRACING_ON
|