| /oneTBB/python/ |
| H A D | setup.py | 24 os.chdir(os.path.abspath(os.path.dirname(__file__))) 61 include_dirs=[os.path.join(tbb_root, 'include')] if not use_compiler_tbb else [], 63 ['-I' + os.path.join(tbb_root, 'include')] if not use_compiler_tbb else []), 69 os.path.join(tbb_root, 'lib', 'intel64', 'gcc4.8'), # for Linux 70 os.path.join(tbb_root, 'lib'), # for MacOS 71 os.path.join(tbb_root, 'lib', 'intel64', 'vc_mt'), # for Windows
|
| H A D | CMakeLists.txt | 26 # Python build requires path to TBB headers
|
| /oneTBB/examples/concurrent_priority_queue/shortpath/ |
| H A D | shortpath.cpp | 171 path.push_back(src); in make_path() 173 path.push_back(src); in make_path() 174 path.push_back(dst); in make_path() 177 make_path(src, at, path); in make_path() 178 path.push_back(dst); in make_path() 183 std::vector<vertex_id> path; in print_path() local 185 make_path(src, dst, path); in print_path() 189 if (path[i] != dst) { in print_path() 190 double seg_length = get_distance(vertices[path[i]], vertices[path[i + 1]]); in print_path() 200 if (path[i] != dst) in print_path() [all …]
|
| H A D | README.md | 2 This directory contains an example that solves the single source shortest path problem. 4 …nections between those nodes. A parallel algorithm based on `A*` is used to find the shortest path. 6 …t needs to add nodes back to the open set when the `g` estimate (shortest path from start to the n… 10 …un time only, regular mode prints the shortest path length, and verbose mode prints out the shorte… 12 …re together, the fewer hops there are in a typical path between those nodes. So, for example, the … 35 * `start` - node to start path at. 36 * `end` - node to end path at.
|
| /oneTBB/doc/ |
| H A D | conf.py | 19 SOURCE_DIR = os.path.dirname(__file__) 20 LATEX_DIR = os.path.join(SOURCE_DIR, '_latex') 21 PREAMBLE_FILE = os.path.join(LATEX_DIR, 'preamble.tex') 22 TITLE_PAGE_FILE = os.path.join(LATEX_DIR, 'title_page.tex')
|
| H A D | make.bat | 38 echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
| H A D | Doxyfile.in | 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 150 # shortest path that makes the file name unique will be used 714 # search path. See also \cite for info how to create references. 1340 # The file has to be specified with full path. 2139 # run, you must also specify the path to the tagfile here. 2170 # The PERL_PATH should be the absolute path and name of the perl script 2172 # The default file (with absolute path) is: /usr/bin/perl. 2194 # default search path. 2201 # If left empty dia is assumed to be found in the default search path. 2212 # available from the path. This tool is part of Graphviz (see: [all …]
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | estimate_flow_graph_performance.rst | 19 A critical path is the most time consuming path from a node with no 21 execution of the nodes along a path cannot be overlapped since they 23 critical path limits scalability. 28 consumed along the path that takes the most time. The nodes along 29 this path cannot be overlapped even in a parallel execution.
|
| /oneTBB/integration/cmake/ |
| H A D | generate_vars.cmake | 16 # SOURCE_DIR - incoming path to oneTBB source directory. 17 # BINARY_DIR - incoming path to oneTBB build directory. 18 # BIN_PATH - incoming path to oneTBB binaries directory. 20 # TBB_CMAKE_INSTALL_LIBDIR - subdir for shared object files installation path (used only in TBB… 21 # VARS_TEMPLATE - path to the vars template file
|
| /oneTBB/src/tbb/ |
| H A D | dynamic_link.cpp | 313 static std::size_t abs_path( char const * name, char * path, std::size_t len ) { in abs_path() argument 322 std::strncpy( path, ap_data._path, ap_data._len + 1 ); in abs_path() 323 __TBB_ASSERT( path[ap_data._len] == 0, nullptr); in abs_path() 324 std::strncat( path, name, len - ap_data._len ); in abs_path() 325 __TBB_ASSERT( std::strlen(path) == full_len, nullptr); in abs_path() 433 char path[ len ]; in dynamic_load() local 434 std::size_t rc = abs_path( library, path, len ); in dynamic_load() 442 dynamic_link_handle library_handle = dlopen( path, loading_flags(local_binding) ); in dynamic_load() 453 DYNAMIC_LINK_WARNING( dl_lib_not_found, path, dlerror() ); in dynamic_load()
|
| /oneTBB/integration/linux/modulefiles/ |
| H A D | tbb32 | 65 prepend-path CPATH "$tbbroot/include32:$tbbroot/include" 66 prepend-path LIBRARY_PATH "$tbbroot/lib32" 67 prepend-path LD_LIBRARY_PATH "$tbbroot/lib32" 68 prepend-path CMAKE_PREFIX_PATH "$tbbroot" 69 prepend-path PKG_CONFIG_PATH "$tbbroot/lib32/pkgconfig"
|
| H A D | tbb | 65 prepend-path CPATH "$tbbroot/include" 66 prepend-path LIBRARY_PATH "$tbbroot/lib" 67 prepend-path LD_LIBRARY_PATH "$tbbroot/lib" 68 prepend-path CMAKE_PREFIX_PATH "$tbbroot" 69 prepend-path PKG_CONFIG_PATH "$tbbroot/lib/pkgconfig"
|
| /oneTBB/doc/GSG/ |
| H A D | integrate.rst | 44 provide the full path to search for included files and libraries, or provide a line as the followin… 52 ``--cflags`` provides oneTBB library include path: 57 -I<path-to>/tbb/latest/lib/pkgconfig/../..//include 59 ``--libs`` provides the Intel(R) oneTBB library name and the search path to find it: 64 -L<path to>tbb/latest/lib/pkgconfig/../..//lib/intel64/gcc4.8 -ltbb
|
| /oneTBB/examples/concurrent_priority_queue/ |
| H A D | README.md | 6 | shortpath | Solves the single source shortest path problem using a `concurrent_priority_queue` c…
|
| /oneTBB/cmake/ |
| H A D | README.md | 54 …If you want to use a specific version of the library, you can specify the path to it manually usin… 56 …MAKE_HWLOC_<HWLOC_VER>_LIBRARY_PATH` - path to the corresponding HWLOC version shared library on L… 57 …- `CMAKE_HWLOC_<HWLOC_VER>_INCLUDE_PATH` - path to the corresponding HWLOC version including direc… 67 - `CMAKE_HWLOC_<HWLOC_VER>_DLL_PATH` - path to the corresponding HWLOC version `.dll` file. 159 The library path points to a file, while the include path points to a directory and not to ``hwloc.…
|
| /oneTBB/test/tbbmalloc/ |
| H A D | test_malloc_overload.cpp | 425 char *path = getenv("PATH"); variable 426 REQUIRE_MESSAGE((path && 0==strcmp(path, pathCopy)), "Environment was changed erroneously.");
|
| /oneTBB/.github/workflows/ |
| H A D | issue_labeler.yml | 33 configuration-path: .github/issue_labeler.yml
|
| H A D | ci.yml | 81 path: html.tar.gz 92 path: gh-pages
|
| /oneTBB/cmake/toolchains/ |
| H A D | riscv64.cmake | 25 # User can use -DCMAKE_FIND_ROOT_PATH to specific toolchain path
|
| /oneTBB/src/tbb/tools_api/ |
| H A D | ittnotify_static.h | 367 …loadA, (void *start_addr, void* end_addr, const char *path), (ITT_FORMAT start_addr, end_addr, pat… 368 …dW, (void *start_addr, void* end_addr, const wchar_t *path), (ITT_FORMAT start_addr, end_addr, pat… 370 …_load, (void *start_addr, void *end_addr, const char *path), (ITT_FORMAT start_addr, end_addr, pat…
|
| H A D | ittnotify.h | 3693 void ITTAPI __itt_module_loadA(void *start_addr, void *end_addr, const char *path); 3694 void ITTAPI __itt_module_loadW(void *start_addr, void *end_addr, const wchar_t *path); 3703 void ITTAPI __itt_module_load(void *start_addr, void *end_addr, const char *path); 3710 ITT_STUB(ITTAPI, void, module_loadA, (void *start_addr, void *end_addr, const char *path)) 3711 ITT_STUB(ITTAPI, void, module_loadW, (void *start_addr, void *end_addr, const wchar_t *path)) 3713 ITT_STUB(ITTAPI, void, module_load, (void *start_addr, void *end_addr, const char *path)) 3726 #define __itt_module_loadA(start_addr, end_addr, path) 3728 #define __itt_module_loadW(start_addr, end_addr, path) 3731 #define __itt_module_load(start_addr, end_addr, path)
|
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | bzlib.hpp | 223 BZ_EXTERN BZFILE* BZ_API(BZ2_bzopen)(const char* path, const char* mode);
|
| H A D | bzlib.cpp | 1522 static BZFILE* bzopen_or_bzdopen(const char* path, /* no use when bzdopen */ in bzopen_or_bzdopen() argument 1557 if (path == nullptr || strcmp(path, "") == 0) { in bzopen_or_bzdopen() 1562 fp = fopen(path, mode2); in bzopen_or_bzdopen() 1600 BZFILE* BZ_API(BZ2_bzopen)(const char* path, const char* mode) { in BZ_API() 1601 return bzopen_or_bzdopen(path, -1, mode, /*bzopen*/ 0); in BZ_API()
|
| /oneTBB/examples/ |
| H A D | README.md | 8 | concurrent_priority_queue/shortpath | Solves the single source shortest path problem using a `co…
|
| /oneTBB/examples/parallel_for/tachyon/ |
| H A D | README.md | 33 * `dataset` - path/name of one of the *.dat files in the dat directory for the example.
|