mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
c0044bc303
commit
e38187acb5
2 changed files with 5 additions and 1 deletions
|
@ -31,6 +31,8 @@ before_install:
|
|||
../configure --tooldir=$TOOLDIR;
|
||||
ci/toolchain_install.sh --all;
|
||||
echo "v0.3" > "$TOOLDIR/version.txt";
|
||||
else
|
||||
echo "using existing tooldir build";
|
||||
fi
|
||||
- if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v0.2" ]; then
|
||||
cd $TRAVIS_BUILD_DIR;
|
||||
|
@ -38,6 +40,7 @@ before_install:
|
|||
echo "v0.2" > "third_party/version.txt";
|
||||
cp -rf third_party $HOME;
|
||||
else
|
||||
echo "using existing third_party build";
|
||||
cp -rf $HOME/third_party $TRAVIS_BUILD_DIR;
|
||||
fi
|
||||
|
||||
|
@ -50,6 +53,7 @@ install:
|
|||
echo "$TRAVIS_COMMIT" > version.txt;
|
||||
cp -rf $TRAVIS_BUILD_DIR/build$XLEN $HOME;
|
||||
else
|
||||
echo "using existing build for commit $TRAVIS_COMMIT";
|
||||
cp -rf $HOME/build$XLEN $TRAVIS_BUILD_DIR;
|
||||
fi
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ Emulator::warp_t::warp_t(const Arch& arch)
|
|||
void Emulator::warp_t::clear(uint64_t startup_addr) {
|
||||
this->PC = startup_addr;
|
||||
this->tmask.reset();
|
||||
this->uui_gen.reset();
|
||||
this->uuid = 0;
|
||||
this->fcsr = 0;
|
||||
|
||||
for (auto& reg_file : this->ireg_file) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue