Home
last modified time | relevance | path

Searched refs:PLU (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/dports/math/tmv/tmv-0.75/src/
H A DTMV_BandLUInverse.cpp66 Matrix<T> PLU = L0 * U0; in LU_Inverse() local
67 if (LUx.nlo() > 0) PLU.reversePermuteRows(p); in LU_Inverse()
68 Matrix<T> minv2 = PLU.inverse(); in LU_Inverse()
86 TMV_RealType(T) normdiff = Norm(PLU*minv - T(1)); in LU_Inverse()
87 TMV_RealType(T) kappa = Norm(PLU)*Norm(minv); in LU_Inverse()
94 cerr<<"PLU = "<<PLU<<endl; in LU_Inverse()
97 cerr<<"m*minv = "<<PLU*minv<<endl; in LU_Inverse()
98 cerr<<"minv*m = "<<minv*PLU<<endl; in LU_Inverse()
H A DTMV_BandLUDiv.cpp148 Matrix<T> PLU = L0*U0; in NonLapLU_LDivEq() local
149 if (LUx.nlo() > 0) PLU.reversePermuteRows(p); in NonLapLU_LDivEq()
151 m2 /= PLU; in NonLapLU_LDivEq()
165 TMV_RealType(T) kappa = Norm(PLU)*Norm(PLU.inverse()); in NonLapLU_LDivEq()
175 cerr<<"PLU = "<<PLU<<endl; in NonLapLU_LDivEq()
254 Matrix<T> PLU = L0*U0; in NonLapLU_RDivEq() local
255 if (LUx.nlo() > 0) PLU.reversePermuteRows(p); in NonLapLU_RDivEq()
257 m2 %= PLU; in NonLapLU_RDivEq()
272 TMV_RealType(T) kappa = Norm(PLU)*Norm(PLU.inverse()); in NonLapLU_RDivEq()
282 cerr<<"PLU = "<<PLU<<endl; in NonLapLU_RDivEq()
/dports/multimedia/opentoonz/opentoonz-1.5.0/thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/kernel/mips64/
H A Dsgemm_kernel_8x4_ps.S251 PLU B3, B1, B1
254 PLU B4, B2, B2
309 PLU B3, B1, B1
312 PLU B4, B2, B2
342 PLU B7, B5, B5
346 PLU B8, B6, B6
375 PLU B3, B1, B1
379 PLU B4, B2, B2
410 PLU B7, B5, B5
414 PLU B8, B6, B6
[all …]
H A Dcgemm_kernel_loongson3a_4x2_ps.S225 PLU B3, B1, B1
226 PLU B4, B2, B2
279 PLU B3, B1, B1
280 PLU B4, B2, B2
315 PLU B7, B5, B5
316 PLU B8, B6, B6
347 PLU B3, B1, B1
348 PLU B4, B2, B2
380 PLU B7, B5, B5
381 PLU B8, B6, B6
[all …]
/dports/math/openblas/OpenBLAS-0.3.18/kernel/mips64/
H A Dsgemm_kernel_8x4_ps.S251 PLU B3, B1, B1
254 PLU B4, B2, B2
309 PLU B3, B1, B1
312 PLU B4, B2, B2
342 PLU B7, B5, B5
346 PLU B8, B6, B6
375 PLU B3, B1, B1
379 PLU B4, B2, B2
410 PLU B7, B5, B5
414 PLU B8, B6, B6
[all …]
H A Dcgemm_kernel_loongson3a_4x2_ps.S225 PLU B3, B1, B1
226 PLU B4, B2, B2
279 PLU B3, B1, B1
280 PLU B4, B2, B2
315 PLU B7, B5, B5
316 PLU B8, B6, B6
347 PLU B3, B1, B1
348 PLU B4, B2, B2
380 PLU B7, B5, B5
381 PLU B8, B6, B6
[all …]
/dports/math/gsl/gsl-2.7/linalg/
H A Dtest_lu.c39 gsl_matrix * PLU = gsl_matrix_calloc(M, N); in test_LU_decomp_eps() local
55 gsl_vector_view v2 = gsl_matrix_subcolumn(PLU, j, j, M - j); in test_LU_decomp_eps()
58 gsl_matrix_set(PLU, j, j, 1.0); in test_LU_decomp_eps()
62 gsl_blas_dtrmm(CblasRight, CblasUpper, CblasNoTrans, CblasNonUnit, 1.0, &U.matrix, PLU); in test_LU_decomp_eps()
72 gsl_vector_view v2 = gsl_matrix_subrow(PLU, i, i, N - i); in test_LU_decomp_eps()
77 gsl_blas_dtrmm(CblasLeft, CblasLower, CblasNoTrans, CblasUnit, 1.0, &L.matrix, PLU); in test_LU_decomp_eps()
83 gsl_vector_view v = gsl_matrix_column(PLU, j); in test_LU_decomp_eps()
92 double aij = gsl_matrix_get(PLU, i, j); in test_LU_decomp_eps()
102 gsl_matrix_free(PLU); in test_LU_decomp_eps()
H A Dtest_luc.c39 gsl_matrix_complex * PLU = gsl_matrix_complex_calloc(M, N); in test_LUc_decomp_eps() local
55 gsl_vector_complex_view v2 = gsl_matrix_complex_subcolumn(PLU, j, j, M - j); in test_LUc_decomp_eps()
58 gsl_matrix_complex_set(PLU, j, j, GSL_COMPLEX_ONE); in test_LUc_decomp_eps()
62 …sl_blas_ztrmm(CblasRight, CblasUpper, CblasNoTrans, CblasNonUnit, GSL_COMPLEX_ONE, &U.matrix, PLU); in test_LUc_decomp_eps()
72 gsl_vector_complex_view v2 = gsl_matrix_complex_subrow(PLU, i, i, N - i); in test_LUc_decomp_eps()
77 … gsl_blas_ztrmm(CblasLeft, CblasLower, CblasNoTrans, CblasUnit, GSL_COMPLEX_ONE, &L.matrix, PLU); in test_LUc_decomp_eps()
83 gsl_vector_complex_view v = gsl_matrix_complex_column(PLU, j); in test_LUc_decomp_eps()
92 gsl_complex aij = gsl_matrix_complex_get(PLU, i, j); in test_LUc_decomp_eps()
106 gsl_matrix_complex_free(PLU); in test_LUc_decomp_eps()
/dports/games/NBlood/NBlood-a1689a4/source/blood/src/
H A Dscreen.cpp70 LOADITEM PLU[15] = { variable
165 palookup[PLU[i].id] = palookup[0]; in scrLoadPLUs()
172 DICTNODE *pPlu = gSysRes.Lookup(PLU[i].name, "PLU"); in scrLoadPLUs()
174 ThrowError("%s.PLU not found", PLU[i].name); in scrLoadPLUs()
177 palookup[PLU[i].id] = (char*)gSysRes.Lock(pPlu); in scrLoadPLUs()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/example/gross-pitaevskii/numerics/
H A DLinearAlgebra.hpp62 std::vector<Real> PLU(A); in lusolve() local
66 lapack->GETRF(N,N,&PLU[0],LDA,&ipiv[0],&info); in lusolve()
69 lapack->GETRS(TRANS,N,M,&PLU[0],LDA,&ipiv[0],&X[0],LDA,&info); in lusolve()
/dports/science/py-scipy/scipy-1.7.1/scipy/optimize/
H A D_bglu_dense.pyx113 It also forces PLU factorization of the basis matrix from
117 Immediately after PLU factorization, the average solve time
118 will be rather high because PLU factorization is slow. For
124 increasing, we perform PLU factorization from scratch rather
125 than updating. PLU factorization is also performed after the
182 Represents PLU factorization of a basis matrix with naive rank-one updates
215 Represents PLU factorization with Golub rank-one updates from
235 Given matrix A and basis indices b, perform PLU factorization of
/dports/print/foomatic-db/foomatic-db-20210822/db/source/PPD/Canon/
H A Dcnadv400x1g.ppd101 *UIConstraints: *Staple 1PLU *OptFIN None
102 *UIConstraints: *OptFIN None *Staple 1PLU
249 *UIConstraints: *Staple 1PLU *PageSize A5
250 *UIConstraints: *PageSize A5 *Staple 1PLU
267 *UIConstraints: *Staple 1PLU *PageSize DL
268 *UIConstraints: *PageSize DL *Staple 1PLU
273 *UIConstraints: *Staple 1PLU *PageSize C5
274 *UIConstraints: *PageSize C5 *Staple 1PLU
286 *UIConstraints: *Staple 1PLU *PageRegion A5
287 *UIConstraints: *PageRegion A5 *Staple 1PLU
[all …]
H A Dcnadvc2220x1g.ppd123 *UIConstraints: *Staple 1PLU *OptFIN None
124 *UIConstraints: *OptFIN None *Staple 1PLU
139 *UIConstraints: *Staple 1PLU *OptFIN IN2TRAY
140 *UIConstraints: *OptFIN IN2TRAY *Staple 1PLU
461 *UIConstraints: *Staple 1PLU *PageSize A5
462 *UIConstraints: *PageSize A5 *Staple 1PLU
517 *UIConstraints: *Staple 1PLU *PageSize DL
518 *UIConstraints: *PageSize DL *Staple 1PLU
533 *UIConstraints: *Staple 1PLU *PageSize C5
534 *UIConstraints: *PageSize C5 *Staple 1PLU
[all …]
H A Dcnadvc2225x1g.ppd123 *UIConstraints: *Staple 1PLU *OptFIN None
124 *UIConstraints: *OptFIN None *Staple 1PLU
139 *UIConstraints: *Staple 1PLU *OptFIN IN2TRAY
140 *UIConstraints: *OptFIN IN2TRAY *Staple 1PLU
461 *UIConstraints: *Staple 1PLU *PageSize A5
462 *UIConstraints: *PageSize A5 *Staple 1PLU
517 *UIConstraints: *Staple 1PLU *PageSize DL
518 *UIConstraints: *PageSize DL *Staple 1PLU
533 *UIConstraints: *Staple 1PLU *PageSize C5
534 *UIConstraints: *PageSize C5 *Staple 1PLU
[all …]
H A Dcnadvc250x1g.ppd77 *UIConstraints: *Staple 1PLU *OptFIN None
78 *UIConstraints: *OptFIN None *Staple 1PLU
241 *UIConstraints: *Staple 1PLU *PageSize A5
242 *UIConstraints: *PageSize A5 *Staple 1PLU
265 *UIConstraints: *Staple 1PLU *PageSize DL
266 *UIConstraints: *PageSize DL *Staple 1PLU
273 *UIConstraints: *Staple 1PLU *PageSize C5
274 *UIConstraints: *PageSize C5 *Staple 1PLU
289 *UIConstraints: *Staple 1PLU *PageRegion A5
290 *UIConstraints: *PageRegion A5 *Staple 1PLU
[all …]
H A Dcnadvc351x1g.ppd70 *UIConstraints: *Staple 1PLU *OptFIN None
71 *UIConstraints: *OptFIN None *Staple 1PLU
223 *UIConstraints: *Staple 1PLU *PageSize A5
224 *UIConstraints: *PageSize A5 *Staple 1PLU
247 *UIConstraints: *Staple 1PLU *PageSize DL
248 *UIConstraints: *PageSize DL *Staple 1PLU
255 *UIConstraints: *Staple 1PLU *PageSize C5
256 *UIConstraints: *PageSize C5 *Staple 1PLU
271 *UIConstraints: *Staple 1PLU *PageRegion A5
272 *UIConstraints: *PageRegion A5 *Staple 1PLU
[all …]
H A Dcnadvc5235x1g.ppd137 *UIConstraints: *Staple 1PLU *OptFIN None
138 *UIConstraints: *OptFIN None *Staple 1PLU
153 *UIConstraints: *Staple 1PLU *OptFIN IN2TRAY
154 *UIConstraints: *OptFIN IN2TRAY *Staple 1PLU
575 *UIConstraints: *Staple 1PLU *PageSize A5
576 *UIConstraints: *PageSize A5 *Staple 1PLU
631 *UIConstraints: *Staple 1PLU *PageSize DL
632 *UIConstraints: *PageSize DL *Staple 1PLU
647 *UIConstraints: *Staple 1PLU *PageSize C5
648 *UIConstraints: *PageSize C5 *Staple 1PLU
[all …]
H A Dcnadvc5250x1g.ppd137 *UIConstraints: *Staple 1PLU *OptFIN None
138 *UIConstraints: *OptFIN None *Staple 1PLU
153 *UIConstraints: *Staple 1PLU *OptFIN IN2TRAY
154 *UIConstraints: *OptFIN IN2TRAY *Staple 1PLU
575 *UIConstraints: *Staple 1PLU *PageSize A5
576 *UIConstraints: *PageSize A5 *Staple 1PLU
631 *UIConstraints: *Staple 1PLU *PageSize DL
632 *UIConstraints: *PageSize DL *Staple 1PLU
647 *UIConstraints: *Staple 1PLU *PageSize C5
648 *UIConstraints: *PageSize C5 *Staple 1PLU
[all …]
H A Dcnadvc3325x1g.ppd101 *UIConstraints: *StaplePos 1PLU *OptFIN None
102 *UIConstraints: *OptFIN None *StaplePos 1PLU
117 *UIConstraints: *StaplePos 1PLU *OptFIN IN2TRAY
118 *UIConstraints: *OptFIN IN2TRAY *StaplePos 1PLU
374 *UIConstraints: *StaplePos 1PLU *PageSize A5
375 *UIConstraints: *PageSize A5 *StaplePos 1PLU
430 *UIConstraints: *StaplePos 1PLU *PageSize DL
431 *UIConstraints: *PageSize DL *StaplePos 1PLU
446 *UIConstraints: *StaplePos 1PLU *PageSize C5
447 *UIConstraints: *PageSize C5 *StaplePos 1PLU
[all …]
H A Dcnadvc332lx1g.ppd95 *UIConstraints: *StaplePos 1PLU *OptFIN None
96 *UIConstraints: *OptFIN None *StaplePos 1PLU
111 *UIConstraints: *StaplePos 1PLU *OptFIN IN2TRAY
112 *UIConstraints: *OptFIN IN2TRAY *StaplePos 1PLU
267 *UIConstraints: *StaplePos 1PLU *PageSize A5
268 *UIConstraints: *PageSize A5 *StaplePos 1PLU
323 *UIConstraints: *StaplePos 1PLU *PageSize DL
324 *UIConstraints: *PageSize DL *StaplePos 1PLU
339 *UIConstraints: *StaplePos 1PLU *PageSize C5
340 *UIConstraints: *PageSize C5 *StaplePos 1PLU
[all …]
H A Dcnadvc3320x1g.ppd101 *UIConstraints: *StaplePos 1PLU *OptFIN None
102 *UIConstraints: *OptFIN None *StaplePos 1PLU
117 *UIConstraints: *StaplePos 1PLU *OptFIN IN2TRAY
118 *UIConstraints: *OptFIN IN2TRAY *StaplePos 1PLU
374 *UIConstraints: *StaplePos 1PLU *PageSize A5
375 *UIConstraints: *PageSize A5 *StaplePos 1PLU
430 *UIConstraints: *StaplePos 1PLU *PageSize DL
431 *UIConstraints: *PageSize DL *StaplePos 1PLU
446 *UIConstraints: *StaplePos 1PLU *PageSize C5
447 *UIConstraints: *PageSize C5 *StaplePos 1PLU
[all …]
H A Dcnadv4225x1g.ppd139 *UIConstraints: *Staple 1PLU *OptFIN None
140 *UIConstraints: *OptFIN None *Staple 1PLU
155 *UIConstraints: *Staple 1PLU *OptFIN IN2TRAY
156 *UIConstraints: *OptFIN IN2TRAY *Staple 1PLU
484 *UIConstraints: *Staple 1PLU *PageSize A5
485 *UIConstraints: *PageSize A5 *Staple 1PLU
532 *UIConstraints: *Staple 1PLU *PageSize DL
533 *UIConstraints: *PageSize DL *Staple 1PLU
548 *UIConstraints: *Staple 1PLU *PageSize C5
549 *UIConstraints: *PageSize C5 *Staple 1PLU
[all …]
/dports/biology/molden/molden5.8/plush/
H A DPLU1 mol="PLU" Charge="0"
/dports/devel/p5-Pithub/Pithub-0.01036/
H A Ddist.ini16 authority = cpan:PLU
/dports/finance/sql-ledger/sql-ledger/doc/templates/Default/
H A Dimport.map26 PLU=partnumber

12345678910>>...12