Remove extra files

This commit is contained in:
abejgonzalez 2023-05-15 14:42:11 -07:00
parent 761e4d36ae
commit 185bdeac9b
6 changed files with 4 additions and 48 deletions

View File

@ -1010,6 +1010,10 @@ class XilinxVCU118InstanceDeployManager(InstanceDeployManager):
for slotno in range(len(self.parent_node.switch_slots)):
self.copy_switch_slot_infrastructure(slotno)
def enumerate_fpgas(self, uridir: str) -> None:
""" FPGAs are enumerated already with VCU118's """
return
def terminate_instance(self) -> None:
""" XilinxVCU118InstanceDeployManager machines cannot be terminated. """
return

View File

@ -1,8 +0,0 @@
{
"benchmark_name": "bare",
"common_simulation_outputs": [
"uartlog"
],
"common_bootbinary": "../../../target-design/chipyard/software/firemarshal/test/bare/hello",
"common_rootfs": "../../../target-design/chipyard/software/firemarshal/boards/default/installers/firesim/dummy.rootfs"
}

View File

@ -1,4 +0,0 @@
This workload was generated using FireMarshal. See the following config
and workload directory for details:
../../../target-design/chipyard/software/firemarshal/test/bare.yaml
../../../target-design/chipyard/software/firemarshal/test/bare

View File

@ -1,8 +0,0 @@
{
"benchmark_name": "br-base",
"common_simulation_outputs": [
"uartlog"
],
"common_bootbinary": "../../../target-design/chipyard/software/firemarshal/images/firechip/br-base/br-base-bin",
"common_rootfs": "../../../target-design/chipyard/software/firemarshal/images/firechip/br-base/br-base.img"
}

View File

@ -1,4 +0,0 @@
This workload was generated using FireMarshal. See the following config
and workload directory for details:
../../../target-design/chipyard/software/firemarshal/boards/firechip/base-workloads/br-base.json
../../../target-design/chipyard/software/firemarshal/boards/firechip/base-workloads/br-base

View File

@ -1,24 +0,0 @@
# This file was generated by build-setup-nolog.sh
export FIRESIM_ENV_SOURCED=1
if ! type conda >& /dev/null; then
echo "::ERROR:: you must have conda in your environment first"
return 1 # don't want to exit here because this file is sourced
fi
# if we're sourcing this in a sub process that has conda in the PATH but not as a function, init it again
conda activate --help >& /dev/null || source $(conda info --base)/etc/profile.d/conda.sh
conda activate /scratch/abejgonza/firesim-private/.conda-env
export FIRESIM_STANDALONE=1
export PATH=/scratch/abejgonza/firesim-private/sw/firesim-software:$PATH
source /scratch/abejgonza/firesim-private/scripts/fix-open-files.sh
# Ensure that we don't have -DNDEBUG anywhere in our environment
# check and fixup the known place where conda will put it
if [[ "$CPPFLAGS" == *"-DNDEBUG"* ]]; then
echo "::INFO:: removing '-DNDEBUG' from CPPFLAGS as we prefer to leave assertions in place"
export CPPFLAGS="${CPPFLAGS/-DNDEBUG/}"
fi
# check for any other occurances and warn the user
env | grep -v 'CONDA_.*_BACKUP' | grep -- -DNDEBUG && echo "::WARNING:: you still seem to have -DNDEBUG in your environment. This is known to cause problems."
true # ensure env.sh exits 0