Advertisement
Guest User

test

a guest
Aug 15th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <mlpack\core.hpp>
  4.  
  5. int main(int argc, char** argv)
  6. {
  7.     mlpack::CLI::ParseCommandLine(argc, argv);
  8.    
  9.     mlpack::Timer::Start("some_timer");
  10.  
  11.     mlpack::Log::Info << "Hello World by MLPACK 2.0.3\n";
  12.    
  13.     mlpack::Timer::Stop("some_timer");
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement