On my Ubuntu 14.04 box, Julia is complaining that my machine doesn't support AVX instructions. What may be the reason for this?
Asked
Active
Viewed 343 times
0
-
1What code are you trying to submit and what is the text of the error? – Alex A. Feb 02 '15 at 16:12
2 Answers
3
"AVX instructions" are extensions to the basic x86 instruction set, and are relatively new (2011).
Julia comes with OpenBLAS for faster linear algebra. It can compile different code pathways based on processor type, and apparently your CPU is too old to support AVX instructions (which the julialang.org build apparently assumes will be available).
You can either ignore the message, or build from source. What CPU do you have?

IainDunning
- 11,546
- 28
- 43