search for: shantanuatiith

Displaying 2 results from an estimated 2 matches for "shantanuatiith".

2016 Oct 09
3
On Loop Distribution pass
...-mllvm -enable-loop-distribute -Rpass-analysis=loop-distribute file.c TORCH <http://crd.lbl.gov/departments/computer-science/PAR/research/previous-projects/torch-testbed/> : There are nearly 488 loops in this benchmark. LLVM was not able to distribute any loop. TSVC <https://github.com/shantanuatiith/TSVC_>: There are 151 loops coded in plain ā€˜Cā€™, none of them got distributed. TSVC has particularly candidates valid for distribution like the one below. The inner loop in this example can be distributed. for (int nl = 0; nl < ntimes/2; nl++) { for (int i = 1; i < LEN; i++) { a[i] += c...
2016 Oct 10
2
On Loop Distribution pass
...te -Rpass-analysis=loop-distribute file.c > > > TORCH <http://crd.lbl.gov/departments/computer-science/PAR/research/previous-projects/torch-testbed/>: > There are nearly 488 loops in this benchmark. LLVM was not able to distribute any loop. > > TSVC <https://github.com/shantanuatiith/TSVC_>: > There are 151 loops coded in plain ā€˜Cā€™, none of them got distributed. TSVC has particularly candidates valid for distribution like the one below. The inner loop in this example can be distributed. > > for (int nl = 0; nl < ntimes/2; nl++) { > for (int i = 1; i < LEN;...