Home
last modified time | relevance | path

Searched refs:nsmall (Results 1 – 25 of 414) sorted by relevance

12345678910>>...17

/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/pdb2pqr/src/
H A Dpsize.py74 self.nsmall = [0,0,0]
185 nsmall = []
187 nsmall.append(n[i])
189 nsmem = 200.0 * nsmall[0] * nsmall[1] * nsmall[2] / 1024 / 1024
192 i = nsmall.index(max(nsmall))
193 nsmall[i] = 32 * ((nsmall[i] - 1)/32 - 1) + 1
198 self.nsmall = nsmall
199 return nsmall
290 nsmem = 200.0 * nsmall[0] * nsmall[1] * nsmall[2] / 1024 / 1024
314 … str = str + "Grid pts. on each proc. = %i x %i x %i\n" % (nsmall[0], nsmall[1], nsmall[2])
[all …]
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/tools/manip/
H A Dpsize.py36 self.nsmall = [0,0,0]
142 nsmall = []
146 nsmem = 200.0 * nsmall[0] * nsmall[1] * nsmall[2] / 1024 / 1024
150 i = nsmall.index(max(nsmall))
151 nsmall[i] = 32 * ((nsmall[i] - 1)/32 - 1) + 1
152 if nsmall <= 0:
156 self.nsmall = nsmall
157 return nsmall
247 nsmem = 200.0 * nsmall[0] * nsmall[1] * nsmall[2] / 1024 / 1024
271 str = str + "Grid pts. on each proc. = %i x %i x %i\n" % (nsmall[0], nsmall[1], nsmall[2])
[all …]
/dports/science/nwchem-data/nwchem-7.0.2-release/src/cckohn/bessel/
H A Dubesplg.F12 integer nbig, lbig, nsmall,nsmall2,nchmx,nemx,np,npd
13 parameter (nbig=15000,lbig=6,nsmall=4015)
15 parameter (nsmall2=2*nsmall)
23 common/spl/rd,r(nsmall),w(nsmall,0:lbig),cs(nsmall),rd26,l
24 complex*16 csc(nsmall,0:lbig),scc(nsmall)
27 double precision csl(nsmall,0:lbig),derl(nsmall,0:lbig)
31 complex*16 c1,c2,ai,ww(nsmall),wwl(nsmall,0:lbig)
36 double precision der(nsmall),xx(nbig),yy(nbig),zz(nbig),
37 & scr(nsmall),wwlr(nsmall2,0:lbig),cscr(nsmall2,0:lbig)
93 if(np.gt.nsmall.or.npd.ne.nsmall)then
H A Dgg.F5 integer nsmall,lbig
6 parameter (nsmall=4015,lbig=6)
13 common/spl/rd,r(nsmall),w(nsmall,0:lbig),cs(nsmall),rd26,l
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/cckohn/bessel/
H A Dubesplg.F12 integer nbig, lbig, nsmall,nsmall2,nchmx,nemx,np,npd
13 parameter (nbig=15000,lbig=6,nsmall=4015)
15 parameter (nsmall2=2*nsmall)
23 common/spl/rd,r(nsmall),w(nsmall,0:lbig),cs(nsmall),rd26,l
24 complex*16 csc(nsmall,0:lbig),scc(nsmall)
27 double precision csl(nsmall,0:lbig),derl(nsmall,0:lbig)
31 complex*16 c1,c2,ai,ww(nsmall),wwl(nsmall,0:lbig)
36 double precision der(nsmall),xx(nbig),yy(nbig),zz(nbig),
37 & scr(nsmall),wwlr(nsmall2,0:lbig),cscr(nsmall2,0:lbig)
93 if(np.gt.nsmall.or.npd.ne.nsmall)then
H A Dgg.F5 integer nsmall,lbig
6 parameter (nsmall=4015,lbig=6)
13 common/spl/rd,r(nsmall),w(nsmall,0:lbig),cs(nsmall),rd26,l
/dports/math/flint2/flint-2.8.4/fmpz_poly/
H A Dinv_series_basecase.c53 slong i, j, nsmall; in _fmpz_poly_inv_series_basecase() local
68 for (nsmall = 1; nsmall < Qlen; nsmall++) in _fmpz_poly_inv_series_basecase()
70 b = Q[nsmall]; in _fmpz_poly_inv_series_basecase()
76 if ((b >> Qbits[nsmall - 1]) != 0) in _fmpz_poly_inv_series_basecase()
77 Qbits[nsmall] = FLINT_BIT_COUNT(b); in _fmpz_poly_inv_series_basecase()
79 Qbits[nsmall] = Qbits[nsmall - 1]; in _fmpz_poly_inv_series_basecase()
84 if (i >= nsmall || Qinvbits > FLINT_BITS - 2 || Qbits[i] > FLINT_BITS - 2) in _fmpz_poly_inv_series_basecase()
169 nsmall = i; in _fmpz_poly_inv_series_basecase()
H A Ddiv_series_basecase.c64 slong i, j, nsmall; in _fmpz_poly_div_series_basecase() local
91 for (nsmall = 0; nsmall < Blen; nsmall++) in _fmpz_poly_div_series_basecase()
93 b = B[nsmall]; in _fmpz_poly_div_series_basecase()
99 if (nsmall == 0 || (b >> Bbits[nsmall - 1]) != 0) in _fmpz_poly_div_series_basecase()
100 Bbits[nsmall] = FLINT_BIT_COUNT(b); in _fmpz_poly_div_series_basecase()
102 Bbits[nsmall] = Bbits[nsmall - 1]; in _fmpz_poly_div_series_basecase()
107 if (i >= nsmall || Qbits > FLINT_BITS - 2 || Bbits[i] > FLINT_BITS - 2) in _fmpz_poly_div_series_basecase()
220 nsmall = i; in _fmpz_poly_div_series_basecase()
/dports/databases/py-sqlite3/Python-3.8.12/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/databases/py-gdbm/Python-3.8.12/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/lang/python-tools/Python-3.8.12/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/lang/python311/Python-3.11.0a3/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/lang/python37/Python-3.7.12/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/lang/python310/Python-3.10.1/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/lang/python39/Python-3.9.9/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/lang/python38/Python-3.8.12/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Objects/
H A Daccu.c31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator() local
32 if (nsmall) { in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
57 Py_ssize_t nsmall; in _PyAccu_Accumulate() local
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
70 if (nsmall < 100000) in _PyAccu_Accumulate()
/dports/math/suitesparse-csparse/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-klu/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-btf/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-ldl/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-slip_lu/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-rbio/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-camd/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)
/dports/math/suitesparse-config/SuiteSparse-5.10.1/CHOLMOD/MATLAB/
H A Dgraph_demo.m49 nsmall = floor (size (A,1) / 2) ; variable
56 [p cp cmember] = nesdis (A, 'sym', nsmall) ;
65 title (sprintf ('nested dissection, nsmall %d', nsmall)) ;
84 nsmall = floor (nsmall / 2) ; variable
85 if (nsmall < 20)

12345678910>>...17