Line 27... |
Line 27... |
|
|
`include "positConfig.sv"
|
`include "positConfig.sv"
|
|
|
module positMul(a, b, o, zero, inf);
|
module positMul(a, b, o, zero, inf);
|
`include "positSize.sv"
|
`include "positSize.sv"
|
localparam rs = $clog2(PSTWID-1)-1;
|
localparam rs = $clog2(PSTWID-1);
|
input [PSTWID-1:0] a;
|
input [PSTWID-1:0] a;
|
input [PSTWID-1:0] b;
|
input [PSTWID-1:0] b;
|
output reg [PSTWID-1:0] o;
|
output reg [PSTWID-1:0] o;
|
output zero;
|
output zero;
|
output inf;
|
output inf;
|
Line 88... |
Line 88... |
wire [es-1:0] exp = rxtmp[es-1:0];
|
wire [es-1:0] exp = rxtmp[es-1:0];
|
// Take absolute value of regime portion
|
// Take absolute value of regime portion
|
wire srxtmp = rxtmp[rs+es+1];
|
wire srxtmp = rxtmp[rs+es+1];
|
wire [rs:0] rgm = srxtmp ? -rxtmp[rs+es+1:es] : rxtmp[rs+es+1:es];
|
wire [rs:0] rgm = srxtmp ? -rxtmp[rs+es+1:es] : rxtmp[rs+es+1:es];
|
// Compute the length of the regime bit string, +1 for positive regime
|
// Compute the length of the regime bit string, +1 for positive regime
|
wire [rs:0] rgml = srxtmp ? rxtmp2c[rs+es:es] : rxtmp2c[rs+es:es] + 2'd1;
|
wire [rs+es+1:0] rxn = rxtmp[rs+es+1] ? rxtmp2c : rxtmp;
|
//assign r_o = (~exp_o[es+Bs+1] || |(exp_oN[es-1:0])) ? exp_oN[es+Bs:es] + 1 : exp_oN[es+Bs:es];
|
wire [rs:0] rgml = (~srxtmp | |(rxn[es-1:0])) ? rxtmp2c[rs+es:es] + 2'd1 : rxtmp2c[rs+es:es];
|
// Build expanded posit number:
|
// Build expanded posit number:
|
// trim one leading bit off the product bits
|
// trim one leading bit off the product bits
|
// and keep guard, round bits, and create sticky bit
|
// and keep guard, round bits, and create sticky bit
|
wire [PSTWID*2-1+3:0] tmp = {{PSTWID-1{~srxtmp}},srxtmp,exp,prod1[(PSTWID-es)*2-2:(PSTWID-es-2)],|prod1[(PSTWID-es-3):0]};
|
wire [PSTWID*2-1+3:0] tmp = {{PSTWID-1{~srxtmp}},srxtmp,exp,prod1[(PSTWID-es)*2-2:(PSTWID-es-2)],|prod1[(PSTWID-es-3):0]};
|
|
|
wire [PSTWID*3-1+3:0] tmp1 = {tmp,{PSTWID{1'b0}}} >> rgml;
|
wire [PSTWID*3-1+3:0] tmp1 = {tmp,{PSTWID{1'b0}}} >> rgml;
|
|
|
// Rounding
|
// Rounding
|
// Gaurd, Round, and Sticky
|
// Guard, Round, and Sticky
|
wire L = tmp1[PSTWID+4], G = tmp1[PSTWID+3], R = tmp1[PSTWID+2], St = |tmp1[PSTWID+1:0],
|
wire L = tmp1[PSTWID+4], G = tmp1[PSTWID+3], R = tmp1[PSTWID+2], St = |tmp1[PSTWID+1:0],
|
ulp = ((G & (R | St)) | (L & G & ~(R | St)));
|
ulp = ((G & (R | St)) | (L & G & ~(R | St)));
|
wire [PSTWID-1:0] rnd_ulp = {{PSTWID-1{1'b0}},ulp};
|
wire [PSTWID-1:0] rnd_ulp = {{PSTWID-1{1'b0}},ulp};
|
|
|
wire [PSTWID:0] tmp1_rnd_ulp = tmp1[2*PSTWID-1+3:PSTWID+3] + rnd_ulp;
|
wire [PSTWID:0] tmp1_rnd_ulp = tmp1[2*PSTWID-1+3:PSTWID+3] + rnd_ulp;
|