cameron.freenode.net changed the topic of #mlpack to: http://www.mlpack.org/ -- We don't respond instantly... but we will respond. Give it a few minutes. Or hours. -- Channel logs: http://www.mlpack.org/irc/
stephentu has quit [Ping timeout: 244 seconds]
stephentu has joined #mlpack
decltype_me has joined #mlpack
stephentu has quit [Ping timeout: 264 seconds]
decltype_me has quit [Ping timeout: 265 seconds]
naywhayare has joined #mlpack
decltype_me has joined #mlpack
decltype_me has quit [Read error: Connection reset by peer]
andrewmw94 has joined #mlpack
andrewmw94 has left #mlpack []
stephentu has joined #mlpack
decltype_me has joined #mlpack
< stephentu> is there a way to only compile specific test cases?
< stephentu> say if i'm working on method X is there a way to avoid compiling all of mlpack to run just the test cases for feature X
< zoq> stephentu: If I remember right you can't just build a single test. But it doesn't matter, if you run 'make' you build your changes only; and the files that include the changes.
< zoq> If you like you can comment the tests you don't need https://github.com/mlpack/mlpack/blob/master/src/mlpack/tests/CMakeLists.txt -> #armadillo_svd_test.cpp
< zoq> Btw. If you have a multicore system, you might try a parallel make, i.e. 'make -j4 mlpack_test' (if you had four cores, for instance).
< stephentu> zoq: thanks
< stephentu> i've been doing make -j4 already, its mainly when i am switching between branches where i get hit the hardest
< stephentu> anyways, is there any interest in a lasso implementation in mlpack?