wsapwn tested - NOTE in vx_main.c

This commit is contained in:
felsabbagh3
2019-11-03 20:56:07 -05:00
parent a39979a844
commit a28a1c45c1
11 changed files with 644 additions and 502 deletions

View File

@@ -5,9 +5,21 @@
int main()
{
// Main is called with all threads active of warp 0
vx_tmc(1);
// TMC test
/*
NOTE: * when test_wspawn is called from instrinsic_tests, RA 80000458 is stored at address 6fffefbc,
but when read back again it reads zeros even though no other write request is made to that
address (when only test_wsapwn is called by itself).
* When test_wsapwn is called by itself from main new lines are not printed....
* when test_wspawn is called with other tests from main it works fine...
*/
// intrinsics_tests();
test_tmc();
// Control Divergence Test
@@ -17,10 +29,9 @@ int main()
vx_tmc(1);
// // Test wspawn
// vx_print_str("test_spawn\n");
// test_wsapwn();
// Test wspawn
vx_print_str("test_wspawn\n");
test_wsapwn();
return 0;
}