Update database

Signed-off-by: Clifford Wolf <clifford@clifford.at>
Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
Clifford Wolf 2017-11-19 19:57:13 +00:00 committed by Tim 'mithro' Ansell
parent 57bef4b239
commit 01831f0aaf
1 changed files with 1 additions and 4 deletions

View File

@ -60,10 +60,7 @@ for tile, pips_srcs_dsts in tiledata.items():
def bitfilter(frame_idx, bit_idx):
assert os.getenv("XRAY_DATABASE") == "artix7"
return True
if frame_idx == 0 and bit_idx == 48:
return False
if frame_idx == 1 and bit_idx == 31:
if (frame_idx, bit_idx) in [(0, 48), (1, 31), (0, 32), (1, 35)]:
return False
return frame_idx in [0, 1]