Bryce Wiedenbeck
Bryce Wiedenbeck
The following: ``` using TensorCast, CUDA; CUDA.allowscalar(false) C = cu(ones(10,2)) L = cu(ones(10,3)) @reduce D[m,a] := sum(p) C[p,a] + L[p,m] ``` gives a `scalar getindex is disallowed` error. But using...
It's likely I haven't met proper guidelines for style/documentation, so please verify those when reviewing the pull request.
Running the following program with `-t 1` and `-t 8` gives very different results! ``` using Base.Threads: @threads using GameTheory: NormalFormGame, lrsnash @threads for i in 1:200 if length(lrsnash(NormalFormGame(rand(0:999, 2,2,2))))...