Displaying 2 results from an estimated 2 matches for "exmatex".
2016 Oct 09
3
On Loop Distribution pass
...+= c[i] * d[i];
b[i] = b[i - 1] + a[i] + d[i];
}
dummy(a, b, c, d, e, aa, bb, cc, 0.);
}
MiBench <http://vhosts.eecs.umich.edu/mibench//>:
There are 6539 loops in MiBench. *None* of the loops were distributed by
the loop-distribution pass of LLVM.
CoMD <https://github.com/exmatex/CoMD>:
CoMD is a reference implementation of typical classical molecular dynamics
algorithms and workloads.
Out of 112 loops none of them are distributed.
For the specific loop I have shown above which is straight forward a good
distribution candidate, the remark is "*loop not distribu...
2016 Oct 10
2
On Loop Distribution pass
...a[i] + d[i];
> }
> dummy(a, b, c, d, e, aa, bb, cc, 0.);
> }
>
> MiBench <http://vhosts.eecs.umich.edu/mibench//>:
> There are 6539 loops in MiBench. None of the loops were distributed by the loop-distribution pass of LLVM.
>
> CoMD <https://github.com/exmatex/CoMD>:
> CoMD is a reference implementation of typical classical molecular dynamics algorithms and workloads.
> Out of 112 loops none of them are distributed.
>
>
> For the specific loop I have shown above which is straight forward a good distribution candidate, the remark is &q...