From f2214a4917fc915c6eb22b41c51775df50c47549 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 13 Nov 2017 23:05:26 +0100 Subject: [PATCH] Improve/fix 013-intpips Signed-off-by: Clifford Wolf Signed-off-by: Tim 'mithro' Ansell --- fuzzers/013-intpips/top.v | 4 +++- utils/utils.tcl | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/fuzzers/013-intpips/top.v b/fuzzers/013-intpips/top.v index 1e7dc74e..b4e65866 100644 --- a/fuzzers/013-intpips/top.v +++ b/fuzzers/013-intpips/top.v @@ -46,7 +46,9 @@ module roi(input clk, input [41:0] din_bits, output [78:0] dout_bits); endmodule module randluts(input [7:0] din, output [7:0] dout); - localparam integer N = 250; + localparam integer N = + `SEED % 3 == 2 ? 250 : + `SEED % 3 == 1 ? 100 : 10; function [31:0] xorshift32(input [31:0] xorin); begin diff --git a/utils/utils.tcl b/utils/utils.tcl index 4f5920ae..442f8279 100644 --- a/utils/utils.tcl +++ b/utils/utils.tcl @@ -40,6 +40,7 @@ proc randplace_pblock {num pblock} { for {set i 0} {$i<$num} {incr i} { set site [lindex $sites $i] set cell [lindex $cells $i] + set_property LOC $site $cell } }