mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
minor update
This commit is contained in:
parent
da8608d702
commit
486cd0b866
9 changed files with 31 additions and 0 deletions
|
@ -17,6 +17,7 @@ env:
|
|||
cache:
|
||||
directories:
|
||||
- $TOOLDIR
|
||||
- $HOME/third_party_patch
|
||||
|
||||
before_install:
|
||||
- if [ ! -d "$TOOLDIR" ] || [ -z "$(ls -A $TOOLDIR)" ] || [ "$(cat $TOOLDIR/version.txt)" != "v2" ]; then
|
||||
|
@ -25,6 +26,12 @@ before_install:
|
|||
OSDIR=ubuntu/focal ./ci/toolchain_install.sh --all;
|
||||
echo "v2" > $TOOLDIR/version.txt;
|
||||
fi
|
||||
- if [ ! -d "$HOME/third_party_patch" ] || [ -z "$(ls -A $HOME/third_party_patch)" ]; then
|
||||
make -C third_party > /dev/null;
|
||||
cp -r third_party $HOME/third_party;
|
||||
else
|
||||
rsync -av --ignore-existing $HOME/third_party_patch/ third_party/;
|
||||
fi
|
||||
- source ./ci/toolchain_env.sh
|
||||
|
||||
stages:
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all: stub rtlsim simx opae
|
||||
|
||||
stub:
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all:
|
||||
$(MAKE) -C simx
|
||||
$(MAKE) -C rtlsim
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all: unittest kernel regression opencl riscv
|
||||
|
||||
unittest:
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ../..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all:
|
||||
$(MAKE) -C conform
|
||||
$(MAKE) -C hello
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ../..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all:
|
||||
$(MAKE) -C vecadd
|
||||
$(MAKE) -C sgemm
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ../..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all:
|
||||
$(MAKE) -C basic
|
||||
$(MAKE) -C demo
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ../..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all:
|
||||
|
||||
run-simx:
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
ROOT_DIR := $(realpath ../..)
|
||||
include $(ROOT_DIR)/config.mk
|
||||
|
||||
all:
|
||||
$(MAKE) -C vx_malloc
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue