| /oneTBB/test/common/ |
| H A D | fp_control.h | 60 inline void SetRoundingMode ( int mode ) { in SetRoundingMode() argument 81 inline void SetSseMode ( int mode ) { in SetSseMode() argument 84 ctl.mxcsr = (ctl.mxcsr & ~SSE_MODE_MASK) | (mode & SSE_MODE_MASK); in SetSseMode() 105 inline void SetRoundingMode ( int mode ) { in SetRoundingMode() argument 107 ctl.my_ctl = mode; in SetRoundingMode() 132 inline void SetFPMode( int mode ) { in SetFPMode() argument 133 SetRoundingMode( RoundingModes[mode/NumSseModes%NumRoundingModes] ); in SetFPMode() 134 SetSseMode( SseModes[mode%NumSseModes] ); in SetFPMode() 137 #define AssertFPMode( mode ) { \ argument 142 inline int SetNextFPMode( int mode, int step = 1 ) { [all …]
|
| /oneTBB/test/tbb/ |
| H A D | test_parallel_scan.cpp | 220 switch (mode%3) { in ParallelScanFunctionalInvoker() 285 mode); in operator ()() 293 void TestAccumulator( int mode ) { in TestAccumulator() argument 319 switch (mode) { in TestAccumulator() 388 mode); in operator ()() 492 for (int mode = 0; mode < 3; mode++) { variable 494 TestAccumulator(mode); 511 for (int mode = 0; mode < 3; mode++) { variable 530 for (int mode = 0; mode < 3; mode++) { variable 532 TestInterface(mode, ParallelScanLambda()); [all …]
|
| H A D | test_mutex.h | 36 void flog_once( std::size_t mode ) { in flog_once() 38 if (mode & 1) { in flog_once() 86 void flog_once( std::size_t mode ) { in flog_once() 88 bool write = (mode % 8) == 7; in flog_once() 92 if ((mode / 8) & 1) { in flog_once() 98 if (mode % 16 == 7) { in flog_once() 107 if (mode % 8 == 3) { in flog_once() 125 if (mode % 16 == 7) { in flog_once() 134 if (mode % 8 == 3) { in flog_once()
|
| /oneTBB/examples/parallel_for/seismic/ |
| H A D | README.md | 10 …defines the GUI mode, supported values are `gdi`, `d2d`, `con` on Windows, `x`,`con` on Linux and … 27 * `serial` - in GUI mode start with serial version of algorithm. 30 The following hot keys can be used in interactive execution mode when the example is compiled with … 34 * `p` - enables parallel execution mode. 35 * `s` - enables serial execution mode.
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | parallel_pipeline.h | 71 filter( filter_mode mode, const Body& body ) : in filter() argument 73 … filter_node_leaf<InputType, OutputType, Body>(static_cast<unsigned int>(mode), body) ) { in filter() 90 filter<InputType, OutputType> make_filter( filter_mode mode, const Body& body ) { in make_filter() argument 92 … filter_node_leaf<InputType, OutputType, Body>(static_cast<unsigned int>(mode), body) ); in make_filter() 98 filter<filter_input<Body>, filter_output<Body>> make_filter( filter_mode mode, const Body& body ) { in make_filter() argument 99 return make_filter<filter_input<Body>, filter_output<Body>>(mode, body); in make_filter()
|
| H A D | global_control.h | 48 TBB_EXPORT bool __TBB_EXPORTED_FUNC finalize(d1::task_scheduler_handle&, std::intptr_t mode);
|
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | bzlib.cpp | 225 s->mode = BZ_M_RUNNING; in BZ_API() 326 if (s->mode == BZ_M_RUNNING) { in copy_input_until_stop() 447 switch (s->mode) { in BZ_API() 457 s->mode = BZ_M_FLUSHING; in BZ_API() 462 s->mode = BZ_M_FINISHING; in BZ_API() 476 s->mode = BZ_M_RUNNING; in BZ_API() 489 s->mode = BZ_M_IDLE; in BZ_API() 1539 if (mode == nullptr) in bzopen_or_bzdopen() 1541 while (*mode) { in bzopen_or_bzdopen() 1542 switch (*mode) { in bzopen_or_bzdopen() [all …]
|
| H A D | bzlib.hpp | 223 BZ_EXTERN BZFILE* BZ_API(BZ2_bzopen)(const char* path, const char* mode); 225 BZ_EXTERN BZFILE* BZ_API(BZ2_bzdopen)(int fd, const char* mode);
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Flow_Graph_Message_Passing_Protocol.rst | 18 Once the edge is in pull mode, when the successor is not busy, it will 23 edge will remain in pull mode. 25 switch from pull to push mode.
|
| H A D | Constraints.rst | 30 may not compile in C++20 mode due to early and strict constraints diagnostics.
|
| /oneTBB/examples/task_arena/fractal/ |
| H A D | README.md | 4 …indow is divided into two areas where fractals are rendered. The example also has the console mode. 13 …defines the GUI mode, supported values are `gdi`, `d2d`, `con` on Windows, `x`,`con` on Linux and … 36 The following hot keys can be used in interactive execution mode when the example is compiled with …
|
| /oneTBB/test/conformance/ |
| H A D | conformance_parallel_pipeline.cpp | 79 oneapi::tbb::filter_mode mode = filter_table[i]; in TestSingleFilter() local 81 oneapi::tbb::filter<void, void> one_filter( mode, body ); in TestSingleFilter() 84 …oneapi::tbb::parallel_pipeline( n_tokens, oneapi::tbb::filter<void, void>(mode, body), context... … in TestSingleFilter() 86 …oneapi::tbb::parallel_pipeline( n_tokens, oneapi::tbb::make_filter<void, void>(mode, body), contex… in TestSingleFilter() 211 oneapi::tbb::filter_mode mode = filter_table[i]; variable 214 auto made_filter1 = oneapi::tbb::make_filter<I,O>(mode, [](I)->O{return O();}); in __anon5895f2ca0802() 218 auto made_filter2 = oneapi::tbb::make_filter(mode, [](I)->O{return O();}); in __anon5895f2ca0902() 222 oneapi::tbb::filter<I, O> one_filter(mode, [](I)->O{return O();}); in __anon5895f2ca0a02()
|
| H A D | conformance_parallel_for.cpp | 155 for ( int mode = 0; mode < 4; ++mode) { in Flog() local 164 switch (mode) { in Flog()
|
| /oneTBB/examples/parallel_for/tachyon/ |
| H A D | README.md | 14 …defines the GUI mode, supported values are `gdi`, `d2d`, `con` on Windows, `x`,`con` on Linux and … 45 The following hot keys can be used in interactive execution mode when the example is compiled with … 48 * `space` - toggle run-time display updating mode while rendering (see no-display-updating above).
|
| /oneTBB/examples/common/gui/ |
| H A D | CMakeLists.txt | 45 "Selected UI mode (${EXAMPLES_UI_MODE}) is not supported on ${CMAKE_SYSTEM_NAME}. 71 message(FATAL_ERROR "Cannot find the DirectX library (required by the 'd2d' UI mode)") 93 message(FATAL_ERROR "Cannot find the Foundation library (required by the 'mac' UI mode)") 98 message(FATAL_ERROR "Cannot find the Cocoa library (required by the 'mac' UI mode)")
|
| /oneTBB/examples/concurrent_priority_queue/shortpath/ |
| H A D | README.md | 10 Silent mode prints run time only, regular mode prints the shortest path length, and verbose mode pr…
|
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | api.cpp | 181 void rt_boundmode(SceneHandle voidscene, int mode) { in rt_boundmode() argument 183 scene->boundmode = mode; in rt_boundmode() 199 void rt_displaymode(SceneHandle voidscene, int mode) { in rt_displaymode() argument 201 scene->displaymode = mode; in rt_displaymode()
|
| /oneTBB/src/tbb/ |
| H A D | governor.cpp | 303 bool __TBB_EXPORTED_FUNC finalize(d1::task_scheduler_handle& handle, std::intptr_t mode) { in finalize() argument 304 if (mode == d1::release_nothrowing) { in finalize() 311 if (mode == d1::finalize_throwing && !ok) { in finalize()
|
| /oneTBB/integration/cmake/ |
| H A D | generate_vars.cmake | 20 …TALL_LIBDIR - subdir for shared object files installation path (used only in TBB_INSTALL_VARS mode)
|
| /oneTBB/examples/parallel_for/polygon_overlay/ |
| H A D | README.md | 35 …defines the GUI mode, supported values are `gdi`, `d2d`, `con` on Windows, `x`,`con` on Linux and …
|
| /oneTBB/doc/main/intro/ |
| H A D | limitations.rst | 11 **Limitation:** oneTBB does not support the freestanding compilation mode.
|
| /oneTBB/doc/GSG/ |
| H A D | integrate.rst | 68 …``--msvc-syntax`` option flag that converts the compiling and linking flags in an appropriate mode.
|
| /oneTBB/examples/common/cmake/modules/ |
| H A D | FindTBB.cmake | 17 # Firstly search for TBB in config mode (i.e. search for TBBConfig.cmake).
|
| /oneTBB/src/tbbmalloc/ |
| H A D | tbbmalloc_internal.h | 618 void delayRegionsReleasing(bool mode) { delayRegsReleasing = mode; }
|
| /oneTBB/examples/ |
| H A D | README.md | 35 - `con` - Console mode (Default).
|