Skip to content

Instantly share code, notes, and snippets.

@keisukefukuda
Created October 23, 2013 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keisukefukuda/7120216 to your computer and use it in GitHub Desktop.
Save keisukefukuda/7120216 to your computer and use it in GitHub Desktop.
A minimal Intel TBB program
// $ icpc -tbb tbb_minimal.cpp
#include <tbb/task_scheduler_init.h>
int main() {
tbb::task_scheduler_init init;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment