Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 35) sorted by relevance

12

/oneTBB/test/common/
H A Dfp_control.h60 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 Dtest_parallel_scan.cpp220 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 Dtest_mutex.h36 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 DREADME.md10 …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 Dparallel_pipeline.h71 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 Dglobal_control.h48 TBB_EXPORT bool __TBB_EXPORTED_FUNC finalize(d1::task_scheduler_handle&, std::intptr_t mode);
/oneTBB/examples/graph/fgbzip2/
H A Dbzlib.cpp225 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 Dbzlib.hpp223 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 DFlow_Graph_Message_Passing_Protocol.rst18 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 DConstraints.rst30 may not compile in C++20 mode due to early and strict constraints diagnostics.
/oneTBB/examples/task_arena/fractal/
H A DREADME.md4 …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 Dconformance_parallel_pipeline.cpp79 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 Dconformance_parallel_for.cpp155 for ( int mode = 0; mode < 4; ++mode) { in Flog() local
164 switch (mode) { in Flog()
/oneTBB/examples/parallel_for/tachyon/
H A DREADME.md14 …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 DCMakeLists.txt45 "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 DREADME.md10 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 Dapi.cpp181 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 Dgovernor.cpp303 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 Dgenerate_vars.cmake20 …TALL_LIBDIR - subdir for shared object files installation path (used only in TBB_INSTALL_VARS mode)
/oneTBB/examples/parallel_for/polygon_overlay/
H A DREADME.md35 …defines the GUI mode, supported values are `gdi`, `d2d`, `con` on Windows, `x`,`con` on Linux and …
/oneTBB/doc/main/intro/
H A Dlimitations.rst11 **Limitation:** oneTBB does not support the freestanding compilation mode.
/oneTBB/doc/GSG/
H A Dintegrate.rst68 …``--msvc-syntax`` option flag that converts the compiling and linking flags in an appropriate mode.
/oneTBB/examples/common/cmake/modules/
H A DFindTBB.cmake17 # Firstly search for TBB in config mode (i.e. search for TBBConfig.cmake).
/oneTBB/src/tbbmalloc/
H A Dtbbmalloc_internal.h618 void delayRegionsReleasing(bool mode) { delayRegsReleasing = mode; }
/oneTBB/examples/
H A DREADME.md35 - `con` - Console mode (Default).

12