| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | shade.cpp | 71 vector N, L, hit; in shader() local 106 VSUB(li->ctr, hit, L) /* find the light vector */ in shader() 109 Llen = sqrt(L.x * L.x + L.y * L.y + L.z * L.z) + EPSILON; in shader() 111 L.x /= Llen; /* normalize the light direction vector */ in shader() 112 L.y /= Llen; in shader() 113 L.z /= Llen; in shader() 115 VDOT(inten, N, L) /* light intensity */ in shader() 126 shadowray.d = L; in shader() 141 phongval = shade_phong(incident, &hit, &N, &L, obj->tex->phongexp); in shader() 233 flt shade_phong(ray* incident, vector* hit, vector* N, vector* L, flt specpower) { in shade_phong() argument [all …]
|
| H A D | extvol.cpp | 161 vector N, L; in ext_volume_texture() local 299 VSUB(li->ctr, (*hit), L) in ext_volume_texture() 300 VNorm(&L); in ext_volume_texture() 301 VDOT(inten, N, L) in ext_volume_texture()
|
| H A D | shade.hpp | 58 flt shade_phong(ray *incident, vector *hit, vector *N, vector *L, flt specpower);
|
| /oneTBB/examples/graph/cholesky/ |
| H A D | init.cpp | 26 double *L = (double *)calloc(sizeof(double), n * n); in posdef_gen() local 27 assert(L); in posdef_gen() 38 L[k * n + j] = in posdef_gen() 42 L[j * n + j] = 1; in posdef_gen() 48 LT[j * n + i] = L[i * n + j]; in posdef_gen() 51 cblas_dgemm(CblasColMajor, CblasNoTrans, CblasNoTrans, n, n, n, 1, L, n, LT, n, 0, A, n); in posdef_gen() 53 free(L); in posdef_gen()
|
| /oneTBB/examples/parallel_for/seismic/ |
| H A D | universe.cpp | 63 L[i][j] = 0.125; in InitializeUniverse() 68 L[i][j] = 0.6; in InitializeUniverse() 73 L[i][j] = 0.4; in InitializeUniverse() 187 D[i][j] * (V[i][j] + L[i][j] * (S[i][j] - S[i][j - 1] + T[i][j] - T[i - 1][j])); in UpdateVelocity()
|
| H A D | universe.hpp | 63 ValueType L[MaxHeight][MaxWidth]; member in Universe
|
| /oneTBB/cmake/ |
| H A D | config_generation.cmake | 65 set(_tbb_pc_extra_libdir "-L\${prefix}/lib") 69 set(_tbb_pc_extra_libdir "-L\${prefix}/lib32") 122 set(_tbb_pc_extra_libdir "-L\${prefix}/lib") 126 set(_tbb_pc_extra_libdir "-L\${prefix}/lib32")
|
| /oneTBB/test/tbb/ |
| H A D | test_limiter_node.cpp | 38 const int L = 10; variable 98 for ( int i = 0; i < L; ++i ) { in operator ()() 156 for ( int i = 0; i < L; ++i ) { in test_parallel() 171 for ( int i = 1; i < L; ++i ) { in test_parallel() 192 for ( int i = 0; i < L; ++i ) { in test_serial() 197 for ( int j = 0; j < L; ++j ) { in test_serial() 205 for ( int i = 1; i < L; ++i ) { in test_serial()
|
| H A D | test_profiling.cpp | 55 tbb::profiling::set_name(mutex, L"mutex");
|
| /oneTBB/test/common/ |
| H A D | doctest.h | 1546 template <typename L> 1550 L lhs; 1632 template <typename L> 1633 Expression_lhs<L> operator<<(L&& operand) { 1634 return Expression_lhs<L>(static_cast<L&&>(operand), m_at); 1638 Expression_lhs<const L&> operator<<(const L &operand) { 1830 template <typename L> 1900 L lambda_; 1904 explicit ContextScope(L&& lambda) : lambda_(static_cast<L&&>(lambda)) { } 1960 template <typename L> [all …]
|
| /oneTBB/integration/pkg-config/ |
| H A D | tbb.pc.in | 23 Libs: -L${libdir} @_tbb_pc_extra_libdir@ -l@_tbb_pc_lib_name@
|
| /oneTBB/src/tbb/ |
| H A D | itt_notify.h | 59 #define _T(string_literal) L ## string_literal
|
| /oneTBB/python/ |
| H A D | CMakeLists.txt | 42 build_ext ${TBB4PY_INCLUDE_STRING} -L$<TARGET_FILE_DIR:TBB::tbb>
|
| H A D | README.md | 37 …- `python3 setup.py build -b<output_directory_path> build_ext -I<path_to_tbb_includes> -L<path_to_…
|
| /oneTBB/doc/main/intro/ |
| H A D | limitations.rst | 39 **Solution:** Use the ``-L`` linker option to specify the correct location of oneTBB library.
|
| /oneTBB/doc/GSG/ |
| H A D | integrate.rst | 64 -L<path to>tbb/latest/lib/pkgconfig/../..//lib/intel64/gcc4.8 -ltbb
|
| /oneTBB/test/ |
| H A D | CMakeLists.txt | 48 # doesn't respect the -L flag.
|