variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format -Werror=cast-function-type -Wno-stringop-overflow, LAPACK_INFO=mkl, PERF_WITH_AVX=1, PERF_WITH_AVX2=1, PERF_WITH_AVX512=1, TORCH_DISABLE_GPU_ASSERTS=ON, TORCH_VERSION=2.0.0, USE_CUDA=ON, USE_CUDNN=...
Tried changing the python ** to c_pow function and defining this at the top: cdef extern from "math.h" nogil: double sqrt(double) double c_log "log"(double) double c_pow "pow"(double, double) # <-- add this one But the same happended. I think that, at this point, it is a...