mirror of https://github.com/openXC7/prjxray.git
Increase 044 filters and reverse order of mergedb for better errors.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
9ecee64d4e
commit
b741467366
|
|
@ -13,8 +13,7 @@ TODO_RE=".*"
|
||||||
MAKETODO_FLAGS=--sides "bot_r,top_r" --pip-type ${PIP_TYPE} --seg-type clk_bufg --re $(TODO_RE) --exclude-re ".*\.CLK_BUFG_(BOT|TOP)_R_CK_MUXED[0-9]+"
|
MAKETODO_FLAGS=--sides "bot_r,top_r" --pip-type ${PIP_TYPE} --seg-type clk_bufg --re $(TODO_RE) --exclude-re ".*\.CLK_BUFG_(BOT|TOP)_R_CK_MUXED[0-9]+"
|
||||||
N = 50
|
N = 50
|
||||||
|
|
||||||
# These PIPs all appear to be either a 1 bit solutions.
|
SEGMATCH_FLAGS=-c 2 -m 6 -M 45
|
||||||
SEGMATCH_FLAGS=-c 2
|
|
||||||
SPECIMENS_DEPS=build/cmt_regions.csv
|
SPECIMENS_DEPS=build/cmt_regions.csv
|
||||||
A_PIPLIST=clk_bufg_bot_r.txt
|
A_PIPLIST=clk_bufg_bot_r.txt
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,6 @@ if $ismask ; then
|
||||||
sort -u "$tmp1" "$db" | grep -v '<.*>' > "$tmp2" || true
|
sort -u "$tmp1" "$db" | grep -v '<.*>' > "$tmp2" || true
|
||||||
else
|
else
|
||||||
# tmp1 must be placed second to take precedence over old bad entries
|
# tmp1 must be placed second to take precedence over old bad entries
|
||||||
python3 ${XRAY_DIR}/utils/mergedb.py --out "$tmp2" "$db" "$tmp1"
|
|
||||||
if ! $ismask ; then
|
if ! $ismask ; then
|
||||||
db_origin=$XRAY_DATABASE_DIR/$XRAY_DATABASE/segbits_$1.origin_info.db
|
db_origin=$XRAY_DATABASE_DIR/$XRAY_DATABASE/segbits_$1.origin_info.db
|
||||||
if [ ! -f $db_origin ] ; then
|
if [ ! -f $db_origin ] ; then
|
||||||
|
|
@ -175,6 +174,7 @@ else
|
||||||
fi
|
fi
|
||||||
python3 ${XRAY_DIR}/utils/mergedb.py --out "$db_origin" "$db_origin" "$tmp1" --track_origin
|
python3 ${XRAY_DIR}/utils/mergedb.py --out "$db_origin" "$db_origin" "$tmp1" --track_origin
|
||||||
fi
|
fi
|
||||||
|
python3 ${XRAY_DIR}/utils/mergedb.py --out "$tmp2" "$db" "$tmp1"
|
||||||
fi
|
fi
|
||||||
# Check aggregate db for consistency and make canonical
|
# Check aggregate db for consistency and make canonical
|
||||||
${XRAY_PARSEDB} --strict "$tmp2" "$db"
|
${XRAY_PARSEDB} --strict "$tmp2" "$db"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue