TruncatedNormal - numbawarning

Hi.
When I try to use TruncatedNormal as likelihood distribution I get the following warning.
NumbaWarning: Cannot cache compiled function “numba_funcified_fgraph” as it uses dynamic globals (such as ctypes pointers and large global arrays)
The code runs and i suppose i get what i want but i can’t understand if this warning messes with something.
What am I missing here?
Thanks a lot.

The warning can be safely ignored, it just means Numba can’t cache the compiled function because there’s a large constant in it. Shouldn’t affect the correctness of the code in any way

1 Like

Ok, thanks a lot!