minor update
This commit is contained in:
@@ -35,7 +35,7 @@ Vortex is a full-stack open-source RISC-V GPGPU.
|
|||||||
## Build Instructions
|
## Build Instructions
|
||||||
More detailed build instructions can be found [here](docs/install_vortex.md).
|
More detailed build instructions can be found [here](docs/install_vortex.md).
|
||||||
### Supported OS Platforms
|
### Supported OS Platforms
|
||||||
- Ubuntu 18.04
|
- Ubuntu 18.04, 20.04
|
||||||
- Centos 7
|
- Centos 7
|
||||||
### Toolchain Dependencies
|
### Toolchain Dependencies
|
||||||
- [POCL](http://portablecl.org/)
|
- [POCL](http://portablecl.org/)
|
||||||
|
|||||||
4
RELEASE
4
RELEASE
@@ -1,4 +0,0 @@
|
|||||||
|
|
||||||
Release Notes!
|
|
||||||
|
|
||||||
* 07/01/2020 - LKG FPGA build - Passed basic, demo, vecadd kernels.
|
|
||||||
23
TODO
23
TODO
@@ -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)
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright © 2019-2023
|
# Copyright 2019-2023
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
# You may obtain a copy of the License at
|
# You may obtain a copy of the License at
|
||||||
@@ -34,7 +34,7 @@ def monitor(stop):
|
|||||||
break
|
break
|
||||||
|
|
||||||
def execute(command):
|
def execute(command):
|
||||||
process = subprocess.Popen(command, stdout=subprocess.PIPE)
|
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||||
while True:
|
while True:
|
||||||
output = process.stdout.readline()
|
output = process.stdout.readline()
|
||||||
if output:
|
if output:
|
||||||
|
|||||||
Reference in New Issue
Block a user