+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes
53 lines
1.5 KiB
Bash
Executable File
53 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright © 2019-2023
|
|
#
|
|
# 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
|
|
# http://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.
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
BUILD_DIR=$1
|
|
|
|
PROGRAM=$(basename "$2")
|
|
PROGRAM_DIR=`dirname $2`
|
|
|
|
VORTEX_RT_PATH=$SCRIPT_DIR/../../../../runtime
|
|
|
|
# Export ASE_WORKDIR variable
|
|
export ASE_WORKDIR=$SCRIPT_DIR/$BUILD_DIR/work
|
|
|
|
shift 2
|
|
|
|
# cleanup incomplete runs
|
|
rm -f $ASE_WORKDIR/.app_lock.pid
|
|
rm -f $ASE_WORKDIR/.ase_ready.pid
|
|
rm -f $SCRIPT_DIR/$BUILD_DIR/nohup.out
|
|
|
|
# Start Simulator in background
|
|
pushd $SCRIPT_DIR/$BUILD_DIR
|
|
echo " [DBG] starting ASE simnulator (stdout saved to '$SCRIPT_DIR/$BUILD_DIR/nohup.out')"
|
|
nohup make sim &
|
|
popd
|
|
|
|
# Wait for simulator readiness
|
|
# When .ase_ready is created in the $ASE_WORKDIR, ASE is ready for simulation
|
|
while [ ! -f $ASE_WORKDIR/.ase_ready.pid ]
|
|
do
|
|
sleep 1
|
|
done
|
|
|
|
# run application
|
|
pushd $PROGRAM_DIR
|
|
echo " [DBG] running ./$PROGRAM $*"
|
|
ASE_LOG=0 LD_LIBRARY_PATH=$POCL_RT_PATH/lib:$VORTEX_RT_PATH/opae:$LD_LIBRARY_PATH ./$PROGRAM $*
|
|
popd
|