URL
https://opencores.org/ocsvn/ft816float/ft816float/trunk
Subversion Repositories ft816float
[/] [ft816float/] [trunk/] [test_bench/] [fpFMA32combo_tb.sv] - Rev 74
Compare with Previous | Blame | View Log
`timescale 1ns / 1ps// ============================================================================// __// \\__/ o\ (C) 2019-2022 Robert Finch, Waterloo// \ __ / All rights reserved.// \/_// robfinch<remove>@finitron.ca// ||//// fpFMA32combo_tb.v// - floating point multiplier - adder test bench//// BSD 3-Clause License// Redistribution and use in source and binary forms, with or without// modification, are permitted provided that the following conditions are met://// 1. Redistributions of source code must retain the above copyright notice, this// list of conditions and the following disclaimer.//// 2. Redistributions in binary form must reproduce the above copyright notice,// this list of conditions and the following disclaimer in the documentation// and/or other materials provided with the distribution.//// 3. Neither the name of the copyright holder nor the names of its// contributors may be used to endorse or promote products derived from// this software without specific prior written permission.//// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.//// ============================================================================import fp32Pkg::*;module fpFMA32combo_tb();reg rst;reg clk;reg [15:0] adr;reg [131:0] mem [0:24000];reg [131:0] memo [0:24000];reg [259:0] memd [0:24000];reg [255:0] memdo [0:24000];reg [31:0] a,b,c;reg [3:0] rm, rmx;wire [3:0] rms;wire [31:0] a5,b5,c5;wire [31:0] o;wire [31:0] as,bs,cs;reg [63:0] ad,bd,cd;wire [63:0] ad5,bd5,cd5,adx,bdx,cdx;wire [63:0] od;reg [7:0] cnt;real delta = 1.0e-5;integer outfile;initial beginrst = 1'b0;clk = 1'b0;$readmemh("d:/cores2022/Thor/rtl/fpu/test_bench/fpFMA32_tv.txt", mem);#20 rst = 1;#50 rst = 0;endalways #5clk = ~clk;wire [4:0] dd = 5'd27;delay5 #(32) u2 (clk, 1'b1, a, a5);delay5 #(32) u3 (clk, 1'b1, b, b5);delay5 #(32) u4 (clk, 1'b1, c, c5);delay5 #(64) u5 (clk, 1'b1, ad, ad5);delay5 #(64) u6 (clk, 1'b1, bd, bd5);delay5 #(64) u7 (clk, 1'b1, cd, cd5);vtdl #(64,32) u8 (clk, 1'b1, dd, ad, adx);vtdl #(64,32) u9 (clk, 1'b1, dd, bd, bdx);vtdl #(64,32) u10 (clk, 1'b1, dd, cd, cdx);vtdl #(4,32) u11 (clk, 1'b1, dd, rm, rms);vtdl #(32,32) u12 (clk, 1'b1, dd, a, as);vtdl #(32,32) u13 (clk, 1'b1, dd, b, bs);vtdl #(32,32) u14 (clk, 1'b1, dd, c, cs);reg [31:0] sim_result;shortreal sim_result1,sim_result2,sim3,sim4;always_combsim3 = $bitstoshortreal(a);always_combsim4 = $bitstoshortreal(b);always_combsim_result1 = sim3 * sim4;always_combsim_result2 = sim_result1 + $bitstoshortreal(c);always_combsim_result = $shortrealtobits(sim_result2);always_ff @(posedge clk)if (rst) beginadr <= 0;cnt <= 0;end elsebeginif (adr==0) beginoutfile = $fopen("d:/cores2022/Thor/rtl/fpu/test_bench/fpFMA32_tvo.txt", "wb");$fwrite(outfile, "rm ------ A ------ ------- B ------ ------- C ------- DUT result - - SIM result -\n");endcnt <= cnt + 1;if (cnt==54)cnt <= 0;if (cnt==4)begina <= mem[adr][31: 0];b <= mem[adr][63:32];c <= mem[adr][95:64];if (adr < 2000)c <= 'd0;else if (adr < 4000)a <= $shortrealtobits(1.0);rm <= 3'd0;//mem[adr][131:128];// ad <= memd[adr][63: 0];// bd <= memd[adr][127:64];// cd <= memd[adr][191:128];endif (cnt==6)beginadr <= adr + 1;memo[adr] <= {rm,o,c,b,a};// memdo[adr] <= {od,cd17,bd17,ad17};// memdo[adr] <= {od,cdx,bdx,adx};if (adr==23999) begin//$writememh("d:/cores2021/ANY1/v2/rtl/fpu/test_bench/fpFMA_tvo.txt", memo);// $writememh("d:/cores2022/Thor/rtl/fpu/test_bench/fpFMA32_tvo.txt", memo);$finish;endendif (cnt==47)$fwrite(outfile, "%h\t%h\t%h\t%h\t%h\t%h%c\n", rm, a, b, c, o, sim_result,(sim_result > o ? sim_result - o : o - sim_result) > 10 ? "*":" ");end//fpFMAnr u1 (clk, 1'b1, 1'b0, rm[2:0], c, b, a, o);//, sign_exe, inf, overflow, underflow);fpFMA32nrCombo u15 (1'b0, rm[2:0], a, b, c, o);//, inf, overflow, underflow, inexact);endmodule
