diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-07-02 15:38:44 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-07-02 15:38:44 -0700 |
| commit | b00ffb1c091b65ed6c741dde74a4e7d5f709efd1 (patch) | |
| tree | 37504d253d295bb2487bb5753fb22f8a8ca09d17 /icefuzz/make_gbio2.py | |
| parent | a25c8679ac37df5219e1d7a8cdd932288cd596b1 (diff) | |
Introduce device class into fuxx workign directories and have glbcheck handle unsupported 5k tiles ok.
Diffstat (limited to 'icefuzz/make_gbio2.py')
| -rw-r--r-- | icefuzz/make_gbio2.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/icefuzz/make_gbio2.py b/icefuzz/make_gbio2.py index 41187ee..fedc8c8 100644 --- a/icefuzz/make_gbio2.py +++ b/icefuzz/make_gbio2.py @@ -4,8 +4,12 @@ from fuzzconfig import * import numpy as np import os -os.system("rm -rf work_gbio2") -os.mkdir("work_gbio2") +device_class = os.getenv("ICEDEVICE") + +working_dir = "work_%s_gbio2" % (device_class, ) + +os.system("rm -rf " + working_dir) +os.mkdir(working_dir) for p in gpins: if p in pins: pins.remove(p) @@ -15,7 +19,7 @@ for p in gpins: w = min(min((len(pins) - 8) // 4, len(gpins)), 8) for idx in range(num): - with open("work_gbio2/gbio2_%02d.v" % idx, "w") as f: + with open(working_dir + "/gbio2_%02d.v" % idx, "w") as f: glbs = np.random.permutation(list(range(8))) print(""" module top ( @@ -71,7 +75,7 @@ for idx in range(num): """ % ( glbs[0], glbs[1], glbs[1], glbs[2], glbs[3] ), file=f) - with open("work_gbio2/gbio2_%02d.pcf" % idx, "w") as f: + with open(working_dir + "/gbio2_%02d.pcf" % idx, "w") as f: p = np.random.permutation(pins) g = np.random.permutation(gpins) for i in range(w): @@ -83,8 +87,5 @@ for idx in range(num): print("set_io %s %s" % (n, p[4*w+i]), file=f) print("set_io q %s" % (p[-1]), file=f) -with open("work_gbio2/Makefile", "w") as f: - print("all: %s" % " ".join(["gbio2_%02d.bin" % i for i in range(num)]), file=f) - for i in range(num): - print("gbio2_%02d.bin:" % i, file=f) - print("\t-bash ../icecube.sh gbio2_%02d > gbio2_%02d.log 2>&1 && rm -rf gbio2_%02d.tmp || tail gbio2_%02d.log" % (i, i, i, i), file=f) + +output_makefile(working_dir, "gbio2") |
