I am trying to port some python code to cython and I am encountering some minor issues.
Below you see a code snippet (simplified example) of the code.
cimport numpy as np cimport cython @cython.boundscheck(False)
I donβt understand why the inner loop is not completely translated into C code (ie the last line, celle [l] = ...), see the output from cython -a feedback :

What am I missing here?
Thank you very much.
source share