See https://cjcoats.github.io/ioapi/ERRORS.html#inst:
This is probably the result of compiling either the library or the model (or both) for a different processor-model than you are running it on…
You need to make sure everything is being compiled for the machine you are running on (for your gcc: -march=native -mtune=native
); if you are running on a cluster with different processor-types on different nodes, then you probably need to do a specialized “least common denominator” compile.