From a08f8a852681903af46df5eab0a0253ad92fba6f Mon Sep 17 00:00:00 2001 From: Jan Siwiec <jan.siwiec@vsb.cz> Date: Mon, 23 Mar 2020 10:16:21 +0100 Subject: [PATCH] Update intel-tbb.md --- docs.it4i/software/intel/intel-suite/intel-tbb.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs.it4i/software/intel/intel-suite/intel-tbb.md b/docs.it4i/software/intel/intel-suite/intel-tbb.md index 545f69ba5..19eb9af05 100644 --- a/docs.it4i/software/intel/intel-suite/intel-tbb.md +++ b/docs.it4i/software/intel/intel-suite/intel-tbb.md @@ -10,13 +10,13 @@ Intel is available on the cluster. $ ml av tbb ``` -The module sets up environment variables, required for linking and running tbb enabled applications. +The module sets up environment variables, required for linking and running TBB-enabled applications. -Link the tbb library, using -ltbb +Link the TBB library using -ltbb. ## Examples -Number of examples, demonstrating use of TBB and its built-in scheduler is available on Anselm, in the $TBB_EXAMPLES directory. +A number of examples demonstrating use of TBB and its built-in scheduler is available on Anselm, in the $TBB_EXAMPLES directory. ```console $ ml intel @@ -27,9 +27,9 @@ $ icc -O2 -DNDEBUG -o primes.x main.cpp primes.cpp -ltbb $ ./primes.x ``` -In this example, we compile, link and run the primes example, demonstrating use of parallel task-based reduce in computation of prime numbers. +In this example, we compile, link, and run the primes example, demonstrating use of parallel task-based reduce in computation of prime numbers. -You will need the tbb module loaded to run the tbb enabled executable. This may be avoided, by compiling library search paths into the executable. +You will need the tbb module loaded to run the TBB-enabled executable. This may be avoided by compiling library search paths into the executable. ```console $ icc -O2 -o primes.x main.cpp primes.cpp -Wl,-rpath=$LIBRARY_PATH -ltbb -- GitLab