From 3fee1a61935240e9145db0235addad9b632f7a5e Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Fri, 9 Feb 2024 20:34:44 -0800 Subject: [PATCH] minor update --- README.md | 2 +- RELEASE | 4 ---- TODO | 23 ----------------------- ci/travis_run.py | 6 +++--- 4 files changed, 4 insertions(+), 31 deletions(-) delete mode 100644 RELEASE delete mode 100644 TODO diff --git a/README.md b/README.md index bca70da0..05b1cb93 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Vortex is a full-stack open-source RISC-V GPGPU. ## Build Instructions More detailed build instructions can be found [here](docs/install_vortex.md). ### Supported OS Platforms -- Ubuntu 18.04 +- Ubuntu 18.04, 20.04 - Centos 7 ### Toolchain Dependencies - [POCL](http://portablecl.org/) diff --git a/RELEASE b/RELEASE deleted file mode 100644 index 48ae100a..00000000 --- a/RELEASE +++ /dev/null @@ -1,4 +0,0 @@ - -Release Notes! - -* 07/01/2020 - LKG FPGA build - Passed basic, demo, vecadd kernels. \ No newline at end of file diff --git a/TODO b/TODO deleted file mode 100644 index 0e4b84ed..00000000 --- a/TODO +++ /dev/null @@ -1,23 +0,0 @@ - - - -Functionality: -1) vx_cl_warpSpawn() - -> To be used by pocl->ops->run - -2) newlib Integration (LoadFile("")) - -> To be used by the Rhinio benchmarks - -3) POCL OPS Vortex Suite - -Performance: -1) Icache doesn't need SEND_MEM_REQUEST Stage - -> Blocks are never dirty, so why not evict right away - -2) Branch not taken speculation - -3) Runtime -02 not running on RTL, and -03 not running on RTL and Emulator - - -Vector: -1) Cycle accurate simulator (would require Cache Simulator) diff --git a/ci/travis_run.py b/ci/travis_run.py index f55a4b0a..8424cd59 100755 --- a/ci/travis_run.py +++ b/ci/travis_run.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -# Copyright © 2019-2023 -# +# 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 @@ -34,7 +34,7 @@ def monitor(stop): break def execute(command): - process = subprocess.Popen(command, stdout=subprocess.PIPE) + process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) while True: output = process.stdout.readline() if output: