[mlpack-git] [mlpack/mlpack] LinearRegression not working on Arch linux 4.6.4.1 (#725)

Ryan Curtin notifications at github.com
Mon Jul 18 13:01:49 EDT 2016


Ok, thanks for the information.  Let's try something simple... can you compile the following program and execute it?

```
#include <armadillo>

using namespace arma;

int main()
{
  mat x = randu<mat>(50, 50);

  vec e = eig_sym(x);
  cout << "Eigenvalues:\n" << e.t();  
}
```

You might have to fix silly problems since I didn't actually compile and test that.  But you should be able to compile with `g++ -std=c++11 test.cpp -larmadillo`.  If that compiles and you run it, do you again encounter a SIGILL?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/issues/725#issuecomment-233390970
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160718/c60bb888/attachment.html>


More information about the mlpack-git mailing list