Skip to content

Latest commit

 

History

History
81 lines (63 loc) · 4.22 KB

WASM_Support.md

File metadata and controls

81 lines (63 loc) · 4.22 KB

WASM Support

oneTBB extends its capabilities by offering robust support for WASM (see Limitation sections).

WASM stands for WebAssembly, a low-level binary format for executing code in web browsers. It is designed to be a portable target for compilers and efficient to parse and execute.

Using oneTBB with WASM, you can take full advantage of parallelism and concurrency while working on web-based applications, interactive websites, and a variety of other WASM-compatible platforms.

oneTBB offers WASM support through the integration with Emscripten*, a powerful toolchain for compiling C and C++ code into WASM-compatible runtimes.

Build

Prerequisites: Download and install Emscripten*. See the instructions.

To build the system, run:

mkdir build && cd build
emcmake cmake .. -DCMAKE_CXX_COMPILER=em++ -DCMAKE_C_COMPILER=emcc -DTBB_STRICT=OFF -DCMAKE_CXX_FLAGS=-Wno-unused-command-line-argument -DTBB_DISABLE_HWLOC_AUTOMATIC_SEARCH=ON -DBUILD_SHARED_LIBS=ON -DTBB_EXAMPLES=ON -DTBB_TEST=ON

To compile oneTBB without pthreads, set the flag -DEMSCRIPTEN_WITHOUT_PTHREAD=true in the command above. By default, oneTBB uses the pthreads.

cmake --build . <options>
cmake --install . <options>

Where:

  • emcmake - a tool that sets up the environment for Emscripten*.
  • -DCMAKE_CXX_COMPILER=em++ - specifies the C++ compiler as Emscripten* C++ compiler.
  • -DCMAKE_C_COMPILER=emcc - specifies the C compiler as Emscripten* C compiler.

NOTE: See CMake documentation to learn about other options.

Run Test

To run tests, use:

ctest

Limitations

You can successfully build your application with oneTBB using WASM, but you may not achieve optimal performance immediately. This is due to the limitation with nested Web Workers: a Web Worker cannot schedule another worker without help from a browser thread. This can lead to unexpected performance outcomes, such as the application running in serial. Find more information in the issue in the Emscripten repository. To workaround this issue, try one of the following ways:

  1. Recommended Solution: Use the -sPROXY_TO_PTHREAD Flag. This flag splits the initial thread into a browser thread and a main thread (proxied by a Web Worker), effectively resolving the issue as the browser thread is always present in the event loop and can participate in Web Workers scheduling. Refer to the Emscripten documentation for more details about -sPROXY_TO_PTHREAD since using this flag may require refactoring the code.
  2. Alternative Solution: Warm Up the oneTBB Thread Pool Initialize the oneTBB thread pool before making the first call to oneTBB. This approach forces the browser thread to participate in Web Workers scheduling.
    int num_threads = tbb::this_task_arena::max_concurrency();
    std::atomic<int> barrier{num_threads};
    tbb::parallel_for(0, num_threads, [&barrier] (int) {
        barrier--;
        while (barrier > 0) {
            // Send browser thread to event loop
            std::this_thread::yield();
        }
    }, tbb::static_partitioner{});

NOTE: Be aware that it might cause delays on the browser side.