-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Player, NormalFormGame: Make payoff_array
's C contiguous
#265
Conversation
The errors occur with Numba 0.29.0, but not with 0.28.1 or 0.26.0. |
Sorry, I didn't quite follow. Does this change-set fix the errors on all versions of numba, or do we still have issues on 0.29? |
Sorry for not being clear.
|
For the error from random/utilities.py, I filed an issue numba/numba#2159. I haven't investigated for the one from lss.py. |
Opened numba/numba#2169 for the error from lss.py. In fact, this error can be avoided by removing |
payoff_array
's C contiguouspayoff_array
C contiguous
I changed the patch (and made a forced push), where |
payoff_array
C contiguouspayoff_array
's C contiguous
Let me bring the previous commit back... |
Test should fail
when payoff_profile_array is passed to NormalFormGame
Rebased on |
Thanks @oyamad merging this into |
Make
payoff_array
's C contiguous when when apayoff_profile_array
is passed toNormalFormGame
, in order for Numba not to complain.