f4pga/wrappers: rm pack.f4pga.sh
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
8a5db23271
commit
ba7fec4bde
|
@ -60,7 +60,15 @@ def generate_constraints():
|
||||||
|
|
||||||
def pack():
|
def pack():
|
||||||
print("[F4PGA] Running (deprecated) pack")
|
print("[F4PGA] Running (deprecated) pack")
|
||||||
run_sh(ROOT / SH_SUBDIR / "pack.f4pga.sh")
|
extra_args = ['--write_block_usage', 'block_usage.json'] if isQuickLogic else []
|
||||||
|
check_call(f"""
|
||||||
|
set -e
|
||||||
|
source {ROOT / SH_SUBDIR}/vpr_common.f4pga.sh
|
||||||
|
parse_args {' '.join(sys_argv[1:])}
|
||||||
|
export OUT_NOISY_WARNINGS=noisy_warnings-${{DEVICE}}_pack.log
|
||||||
|
run_vpr --pack {' '.join(extra_args)}
|
||||||
|
mv vpr_stdout.log pack.log
|
||||||
|
""", env=f4pga_environ, shell=True, executable='/bin/bash')
|
||||||
|
|
||||||
|
|
||||||
def place():
|
def place():
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
#
|
|
||||||
# Copyright (C) 2020-2022 F4PGA Authors.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# https://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
source $(dirname "$0")/vpr_common.f4pga.sh
|
|
||||||
parse_args $@
|
|
||||||
|
|
||||||
export OUT_NOISY_WARNINGS=noisy_warnings-${DEVICE}_pack.log
|
|
||||||
|
|
||||||
run_vpr \
|
|
||||||
--pack \
|
|
||||||
--write_block_usage \
|
|
||||||
block_usage.json
|
|
||||||
|
|
||||||
mv vpr_stdout.log pack.log
|
|
|
@ -1,27 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
#
|
|
||||||
# Copyright (C) 2020-2022 F4PGA Authors.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# https://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
source $(dirname "$0")/vpr_common.f4pga.sh
|
|
||||||
parse_args "$@"
|
|
||||||
|
|
||||||
export OUT_NOISY_WARNINGS=noisy_warnings-${DEVICE}_pack.log
|
|
||||||
|
|
||||||
run_vpr --pack
|
|
||||||
mv vpr_stdout.log pack.log
|
|
Loading…
Reference in New Issue