Under Termux, running $ cmake -B build -DGGML_CURL=OFF -DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS wrongly detects the OpenBLAS includes path as /data/data/com.termux ...
package p var x [200]int func f(u uint64) int { s := 0 for u > 0 { var d uint64 u, d = u/100, u%100 s += x[d*2+1] } return s } There is a bounds check in this loop even though d <= 99 so d*2+1 <= 199 ...