Home
last modified time | relevance | path

Searched refs:L (Results 1 – 17 of 17) sorted by relevance

/oneTBB/examples/parallel_for/tachyon/src/
H A Dshade.cpp71 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 Dextvol.cpp161 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 Dshade.hpp58 flt shade_phong(ray *incident, vector *hit, vector *N, vector *L, flt specpower);
/oneTBB/examples/graph/cholesky/
H A Dinit.cpp26 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 Duniverse.cpp63 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 Duniverse.hpp63 ValueType L[MaxHeight][MaxWidth]; member in Universe
/oneTBB/cmake/
H A Dconfig_generation.cmake65 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 Dtest_limiter_node.cpp38 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 Dtest_profiling.cpp55 tbb::profiling::set_name(mutex, L"mutex");
/oneTBB/test/common/
H A Ddoctest.h1546 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 Dtbb.pc.in23 Libs: -L${libdir} @_tbb_pc_extra_libdir@ -l@_tbb_pc_lib_name@
/oneTBB/src/tbb/
H A Ditt_notify.h59 #define _T(string_literal) L ## string_literal
/oneTBB/python/
H A DCMakeLists.txt42 build_ext ${TBB4PY_INCLUDE_STRING} -L$<TARGET_FILE_DIR:TBB::tbb>
H A DREADME.md37 …- `python3 setup.py build -b<output_directory_path> build_ext -I<path_to_tbb_includes> -L<path_to_…
/oneTBB/doc/main/intro/
H A Dlimitations.rst39 **Solution:** Use the ``-L`` linker option to specify the correct location of oneTBB library.
/oneTBB/doc/GSG/
H A Dintegrate.rst64 -L<path to>tbb/latest/lib/pkgconfig/../..//lib/intel64/gcc4.8 -ltbb
/oneTBB/test/
H A DCMakeLists.txt48 # doesn't respect the -L flag.