| /oneTBB/examples/parallel_for/tachyon/dat/ |
| H A D | teapot.dat | 364 N0 1.87966e-15 -1.16933e-15 1 N1 2.13636e-15 -5.93089e-16 1 N2 -0.849414 0.228972 0.475466 372 N0 1.4538e-15 -1.67359e-15 1 N1 1.87966e-15 -1.16933e-15 1 N2 -0.760669 0.441188 0.476167 380 N0 8.74229e-16 -2.05298e-15 1 N1 1.4538e-15 -1.67359e-15 1 N2 -0.621695 0.621695 0.476435 408 N0 2.13636e-15 -5.93089e-16 1 N1 1.87966e-15 -1.16933e-15 1 N2 0.480481 -0.278679 0.83155 424 N0 1.4538e-15 -1.67359e-15 1 N1 8.74229e-16 -2.05298e-15 1 N2 0.278679 -0.480481 0.83155 440 …N0 1.77072e-16 -2.25214e-15 1 N1 -5.65179e-16 -2.22045e-15 1 N2 -4.5989e-16 -0.556738 0.830688 728 N0 -2.25214e-15 -1.77072e-16 1 N1 -2.22045e-15 5.65179e-16 1 N2 -0.556738 4.5989e-16 0.830688 1016 N0 -1.77072e-16 2.25214e-15 1 N1 5.65179e-16 2.22045e-15 1 N2 4.5989e-16 0.556738 0.830688 1304 N0 2.25214e-15 1.77072e-16 1 N1 2.22045e-15 -5.65179e-16 1 N2 0.556738 -4.5989e-16 0.830688 3980 N0 -0.6 -0.8 -3.10757e-16 N1 -1.21738e-31 -1 -1.23358e-16 N2 -3.3285e-17 -1 -1.02253e-16 [all …]
|
| H A D | 820spheres.dat | 214 SPHERE CENTER 0.643951 0.172546 1.11022e-16 RAD 0.166667 336 SPHERE CENTER 0.852418 0.0955788 2.30268e-16 RAD 0.0555556 396 SPHERE CENTER 0.172546 0.643951 1.11022e-16 RAD 0.166667 458 SPHERE CENTER 0.0955788 0.852418 1.31582e-16 RAD 0.0555556 760 SPHERE CENTER -0.471405 0.471405 1.11022e-16 RAD 0.166667 762 SPHERE CENTER -0.508983 0.690426 1.25414e-16 RAD 0.0555556 942 SPHERE CENTER -0.643951 -0.172546 1.11022e-16 RAD 0.166667 1064 SPHERE CENTER -0.786005 -0.343435 1.25414e-16 RAD 0.0555556 1306 SPHERE CENTER -0.172546 -0.643951 1.11022e-16 RAD 0.166667 1488 SPHERE CENTER 0.471405 -0.471405 1.11022e-16 RAD 0.166667 [all …]
|
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | bndbox.cpp | 106 if ((ry->s.x > bx->max.x) && (ry->e.x > bx->max.x)) in bndbox_intersect() 108 if ((ry->s.x < bx->min.x) && (ry->e.x < bx->min.x)) in bndbox_intersect() 111 if ((ry->s.y > bx->max.y) && (ry->e.y > bx->max.y)) in bndbox_intersect() 113 if ((ry->s.y < bx->min.y) && (ry->e.y < bx->min.y)) in bndbox_intersect() 116 if ((ry->s.z > bx->max.z) && (ry->e.z > bx->max.z)) in bndbox_intersect() 118 if ((ry->s.z < bx->min.z) && (ry->e.z < bx->min.z)) in bndbox_intersect() 196 RAYPNT(newray.e, (*ry), (tfar + EPSILON)); in bndbox_intersect()
|
| H A D | quadric.cpp | 96 (2.0 * q->mat.c * rd.x * rd.z) + (q->mat.e * (rd.y * rd.y)) + in quadric_intersect() 101 (q->mat.e * ro.y * rd.y) + (q->mat.f * ((ro.y * rd.z) + (rd.y * ro.z))) + in quadric_intersect() 105 (2.0 * q->mat.c * ro.x * ro.z) + (2.0 * q->mat.d * ro.x) + (q->mat.e * (ro.y * ro.y)) + in quadric_intersect() 129 N->y = (q->mat.b * (pnt->x - q->ctr.x) + q->mat.e * (pnt->y - q->ctr.y) + in quadric_normal()
|
| H A D | quadric.hpp | 57 flt e; member
|
| /oneTBB/test/tbb/ |
| H A D | test_handle_perror.cpp | 52 } catch( std::runtime_error& e ) { variable 53 REQUIRE(std::memcmp(e.what(), "apple: ", 7) == 0); 54 … REQUIRE_MESSAGE(std::strlen(std::strstr(e.what(), std::strerror(EAGAIN))), "Bad error message");
|
| H A D | test_eh_thread.cpp | 112 } catch (const std::exception & e) { variable 115 if (e.what()== nullptr) {
|
| H A D | test_split_node.cpp | 357 for(int e = 0; e < ELEMS; ++e) { // exercise each of the vector elements in test() local 358 test_one_serial<SType>(split_vector[e], g); in test()
|
| H A D | test_task_group.cpp | 466 } catch ( TestException& e ) { in LaunchChildrenWithFunctor() local 467 CHECK_MESSAGE( e.what(), "Empty what() string" ); in LaunchChildrenWithFunctor() 468 CHECK_MESSAGE( strcmp(e.what(), EXCEPTION_DESCR1) == 0, "Unknown exception" ); in LaunchChildrenWithFunctor() 538 } catch ( TestException& e ) { in TestExceptionHandling2() local 539 CHECK_MESSAGE( e.what(), "Empty what() string" ); in TestExceptionHandling2() 540 CHECK_MESSAGE( strcmp(e.what(), EXCEPTION_DESCR2) == 0, "Unknown exception" ); in TestExceptionHandling2() 599 catch ( const tbb::missing_wait& e ) { in TestMissingWait() local 600 CHECK_MESSAGE( e.what(), "Error message is absent" ); in TestMissingWait()
|
| H A D | test_global_control.cpp | 134 catch ( const tbb::unsafe_wait& e) { in TestException() local 135 const char* msg = e.what(); in TestException()
|
| H A D | test_arena_priorities.cpp | 334 for( auto& e : per_priority_tasks_num ) { in test() local 335 auto priority = e.first; in test() 336 auto tasks_num = e.second; in test()
|
| H A D | test_profiling.cpp | 252 tbb::profiling::event e("event"); variable 253 e.emit();
|
| H A D | test_task_arena.cpp | 361 void on_exception(const char *e) { // outside arena, in catch block in on_exception() 363 CHECK(my_id.str() == e); in on_exception() 409 } catch(std::logic_error &e) { in test_arena_entry() local 410 scoped_functor.on_exception(e.what()); in test_arena_entry() 712 int &e = myEts.local(); in operator ()() local 713 if ( e++ > 0 ) myIsStolen = true; in operator ()() 718 --e; in operator ()() 892 int &e = myEts.local(); in operator ()() local 893 if ( e++ > 0 ) myIsStolen = true; in operator ()() 896 --e; in operator ()()
|
| /oneTBB/test/common/ |
| H A D | exception_handling.h | 114 #define EXCEPTION_NAME(e) typeid(e).name() argument 175 } catch ( PropagatedException& e ) { \ 181 REQUIRE_MESSAGE(e.what(), "Empty what() string" ); \ 182 …REQUIRE_MESSAGE((strcmp(EXCEPTION_NAME(e), (g_SolitaryException ? typeid(solitary_test_exception) … 183 … REQUIRE_MESSAGE((strcmp(e.what(), EXCEPTION_DESCR) == 0), "Unexpected original exception info"); \
|
| H A D | concurrent_priority_queue_common.h | 235 void push_selector(Q& q, E e, std::size_t i) { in push_selector() argument 237 case 0: q.push(e); break; in push_selector() 238 case 1: q.push(std::move(e)); break; in push_selector() 239 case 2: q.emplace(e); break; in push_selector()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_priority_queue.cpp | 455 int e; in test_assignment_clear_swap() local 485 qo.try_pop(e); in test_assignment_clear_swap() 492 qo.try_pop(e); in test_assignment_clear_swap() 504 int e = 42; in test_serial_push_pop() local 510 push_selector(q, e, i); in test_serial_push_pop() 511 e = e*-1 + int(i); in test_serial_push_pop() 519 REQUIRE_MESSAGE(q.try_pop(e), "Failed pop test"); in test_serial_push_pop() 520 REQUIRE_MESSAGE(prev >= e, "Failed pop priority test"); in test_serial_push_pop() 521 prev = e; in test_serial_push_pop() 527 REQUIRE_MESSAGE(!q.try_pop(e), "Failed: successful pop from the empty queue"); in test_serial_push_pop()
|
| H A D | conformance_enumerable_thread_specific.cpp | 149 static inline void init(T &e) { e = static_cast<T>(0); } in init() 150 static inline void sum(T &e, const int addend ) { e += static_cast<T>(addend); } in sum() 151 static inline void sum(T &e, const double addend ) { e += static_cast<T>(addend); } in sum() 152 static inline void set(T &e, const int value ) { e = static_cast<T>(value); } in set() 153 static inline double get(const T &e ) { return static_cast<double>(e); } in get()
|
| /oneTBB/examples/parallel_reduce/pi/ |
| H A D | main.cpp | 96 catch (std::exception& e) { in main() local 97 std::cerr << "error occurred. error text is :\"" << e.what() << "\"\n"; in main()
|
| /oneTBB/src/tbb/ |
| H A D | semaphore.h | 103 int e = errno; in futex_wait() local 104 …__TBB_ASSERT(r == 0 || r == EWOULDBLOCK || (r == -1 && (e == EAGAIN || e == EINTR)), "futex_wait f… in futex_wait()
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | scalable_allocator.h | 203 void throw_exception(const E &e) { in throw_exception() argument 205 throw e; in throw_exception() local 207 suppress_unused_warning(e); in throw_exception()
|
| /oneTBB/examples/parallel_for/seismic/ |
| H A D | README.md | 24 * `n-of-threads` -e number of threads to use; a range of the form low\[:high\], where low and optio… 36 * `e` - enables screen updates.
|
| /oneTBB/src/tbb/def/ |
| H A D | mac64-tbb.def | 17 # Sometimes macOS* requires leading underscore (e. g. in export list file), but sometimes not 18 # (e. g. when searching symbol in a dynamic library via dlsym()). Symbols in this file SHOULD
|
| /oneTBB/examples/common/utility/ |
| H A D | utility.hpp | 118 catch (std::invalid_argument& e) { in parse_and_store() local 121 << " (" << e.what() << ")"; in parse_and_store() 558 catch (std::exception& e) { in parse_cli_arguments() local 561 << "error text: " << e.what() << "\n" in parse_cli_arguments()
|
| /oneTBB/cmake/ |
| H A D | README.md | 43 … specify for Debug build. It is not applicable for multi-config generators, e.g., Microsoft* Visua… 92 - `--config <Release|Debug>` - build configuration, applicable only for multi-config generators, e.… 99 …rator](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html) (e.g., `-A Win32` for [… 173 cmake --build . --target <test> # e.g. test_version 229 …1. Let CMake know where to search for TBBConfig, e.g. specify the location of ``TBBConfig.cmake`` …
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Initializing_and_Terminating_the_Library.rst | 17 If waiting for thread completion is not safe, e.g. may result in a deadlock
|