Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions errors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Possible errors you may encounter

* 'Illegal instruction' error
The likely cause of this error is that you have code that was compiled on one computing architecture, and is ran on another one which does not
support all the features. I.e. You compiled it on a new Intel CPU and try to run it on an AMD machine. A solution to this problem is to either
verify if you have some kind of compiled code that you are using that needs to be rebuilt using '-march=generic' instead of '-march=native' flags
or alternatively restrict the range of nodes that you use to run your code to either intel only, or intel_v1, intel_v4... etc