I am using numba @autojit decorator. What does the following error mean?
ByteCodeSupportError: does not support freevars
What are freevars?
I am using numba @autojit decorator. What does the following error mean?
ByteCodeSupportError: does not support freevars
What are freevars?
Yes, the "freevars" are variable references inside the function which refer to variables defined in an enclosing function. The ability to handle closures disappeared in the major Numba refactor last year, but has been readded to the devel branch of Numba on Github and will appear in the next release.