TODO update
This commit is contained in:
23
TODO
23
TODO
@@ -1,4 +1,23 @@
|
|||||||
|
|
||||||
|
|
||||||
* Add L1 cache + banked scratchpad
|
|
||||||
* csri bug?
|
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)
|
||||||
|
|||||||
@@ -257,13 +257,13 @@ bool Warp::interrupt(Word r0) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Warp::printStats() const {
|
void Warp::printStats() const {
|
||||||
cout << "Steps : " << steps << endl
|
cerr << "Steps : " << steps << endl
|
||||||
<< "Insts : " << insts << endl
|
<< "Insts : " << insts << endl
|
||||||
<< "Loads : " << loads << endl
|
<< "Loads : " << loads << endl
|
||||||
<< "Stores: " << stores << endl;
|
<< "Stores: " << stores << endl;
|
||||||
|
|
||||||
unsigned const grade = reg[0][28];
|
unsigned const grade = reg[0][28];
|
||||||
|
|
||||||
if (grade == 1) cout << "GRADE: PASSED\n";
|
if (grade == 1) cerr << "GRADE: PASSED\n";
|
||||||
else cout << "GRADE: FAILED " << (grade >> 1) << "\n";
|
else cerr << "GRADE: FAILED " << (grade >> 1) << "\n";
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
emulator/core.o
BIN
emulator/core.o
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
|||||||
echo start > results.txt
|
echo start > results.txt
|
||||||
|
|
||||||
echo ../kernel/vortex_test.hex
|
echo ../kernel/vortex_test.hex
|
||||||
./harptool -E -a rv32i --core ../runtime/mains/simple/vx_simple_main.hex -s -b 1> emulator.debug
|
./harptool -E -a rv32i --core ../runtime/mains/dev/vx_dev_main.hex -s -b 1> emulator.debug
|
||||||
|
|||||||
Reference in New Issue
Block a user