From 44b4cafbc1bcb8369dae2f53b4a677badd93b738 Mon Sep 17 00:00:00 2001 From: dam1n19 <dam1n19@soton.ac.uk> Date: Wed, 5 Jul 2023 15:57:29 +0100 Subject: [PATCH] Removed aes tests from repo --- README.md | 2 +- simulate/socsim/regression_aes128.sh | 31 ---------------------------- simulate/socsim/system_aes128.sh | 31 ---------------------------- 3 files changed, 1 insertion(+), 63 deletions(-) delete mode 100755 simulate/socsim/regression_aes128.sh delete mode 100755 simulate/socsim/system_aes128.sh diff --git a/README.md b/README.md index 1a8fe52..07a71b7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Accelerator System Top-Level -This repo is the top-level repository which contains an example accelerator based on the secworks AES engine integrated in SoC Labs provided nanosoc chip design IP in forms of git subrepositories. +This repo is the top-level project repository which is used as a base for other projects to be built from. Please Fork this repository in order to build your own custom project. This can be done through the git.soton.ac.uk/soclabs/accelerator-project website and create your own custom project folder which you can then customise to suit your needs. diff --git a/simulate/socsim/regression_aes128.sh b/simulate/socsim/regression_aes128.sh deleted file mode 100755 index 737c8ae..0000000 --- a/simulate/socsim/regression_aes128.sh +++ /dev/null @@ -1,31 +0,0 @@ -#----------------------------------------------------------------------------- -# SoC Labs Simulation script for system level verification -# A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license. -# -# Contributors -# -# David Mapstone (d.a.mapstone@soton.ac.uk) -# -# Copyright 2023, SoC Labs (www.soclabs.org) -#----------------------------------------------------------------------------- - -#!/usr/bin/env bash - -# Get simulation name from name of script -SIM_NAME=`basename -s .sh "$0"` - -# Directory to put simulation files -SIM_DIR=$SOCLABS_PROJECT_DIR/simulate/sim/$SIM_NAME - -# Create Directory to put simulation files -mkdir -p $SIM_DIR -cd $SOCLABS_PROJECT_DIR/simulate/sim/$SIM_NAME - -# Compile Simulation -# Call makefile in NanoSoC Repo with options -echo ${2} -make -C $SOCLABS_NANOSOC_TECH_DIR regression_mti \ - SIM_DIR=$SIM_DIR \ - ACCELERATOR=yes \ - ${@:2} - diff --git a/simulate/socsim/system_aes128.sh b/simulate/socsim/system_aes128.sh deleted file mode 100755 index 1bfacd4..0000000 --- a/simulate/socsim/system_aes128.sh +++ /dev/null @@ -1,31 +0,0 @@ -#----------------------------------------------------------------------------- -# SoC Labs Simulation script for system level verification -# A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license. -# -# Contributors -# -# David Mapstone (d.a.mapstone@soton.ac.uk) -# -# Copyright 2023, SoC Labs (www.soclabs.org) -#----------------------------------------------------------------------------- - -#!/usr/bin/env bash - -# Get simulation name from name of script -SIM_NAME=`basename -s .sh "$0"` - -# Directory to put simulation files -SIM_DIR=$SOCLABS_PROJECT_DIR/simulate/sim/$SIM_NAME - -# Create Directory to put simulation files -mkdir -p $SIM_DIR -cd $SOCLABS_PROJECT_DIR/simulate/sim/$SIM_NAME - -# Compile Simulation -# Call makefile in NanoSoC Repo with options -echo ${2} -make -C $SOCLABS_NANOSOC_TECH_DIR run_mti \ - SIM_DIR=$SIM_DIR \ - ACCELERATOR=yes \ - ${@:2} - -- GitLab