mhostetter

Results 194 comments of mhostetter

Thanks for the report. I believe Numba doesn't support exotic keyword arguments, like `where`, to `numba.vectorize()`'d functions. If that's the case, there's nothing we can do. Perhaps we should add...

I don't have any good WIP code to share. The thing I quickly discovered was CuPy arrays are not subclasses of `np.ndarray`. So the overridden hooks in `FieldArray` wouldn't trigger...

With the exception of the `tensordot()` call, the above code currently runs. However, it's on CPU. I'm guessing in your desired use case you'd use CuPy? Also, a tip: If...

> To get the number representation I am thinking of using the integer_to_poly method in galois\_polys\_conversions.py to get the number representation in the field GF(q) and also use the poly_to_integer...

@abhishekmittal15 sorry for the delayed response. I did just look at your example notebook. It looks good to me. The API seems consistent with the APIs for the other FEC...

Thanks for the report. I usually release code into the void and never hear anything back. So it's nice to know someone discovered something after a release, even if it's...

Interestingly, when I run `mypy --strict` on the source code I get 189 errors, not 1528. Do you have any idea why? Below are my outputs. ``` PS C:\Users\matth\repos\galois> python3...

Alright. Thanks again for reporting. This is the kind of feedback I'm looking for. I'm going to work on getting the source code to appease `mypy`. I previously considered this,...

Would you mind providing an example snippet of code and the `mypy` complaint?

Thanks, I remember seeing this when OP first raised this issue. I'm not sure how to resolve that. NumPy controls the return type signature from `np.vstack()`. I'm open to ideas,...