Home
last modified time | relevance | path

Searched refs:grids (Results 226 – 250 of 3963) sorted by relevance

12345678910>>...159

/dports/science/PETSc/petsc-3.14.1/src/mat/tests/output/
H A Dex111_2.out1 coarse grids: 4 4 4; fine grids: 7 7 7
/dports/www/ilias/ILIAS-5.4.25/libs/bower/bower_components/yui2/src/grids/
H A Dbuild.properties3 component=grids
4 component.cssfiles=grids.css
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/yui2/src/grids/
H A Dbuild.properties3 component=grids
4 component.cssfiles=grids.css
/dports/math/py-yt/yt-4.0.1/yt/frontends/enzo_e/tests/
H A Dtest_outputs.py78 fh = h5py.File(ds.index.grids[0].filename, mode="r")
79 for grid in ds.index.grids:
116 assert len(ds.index.grids) == 4
125 for grid in ds.index.grids:
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/docs/KeywordMetadata/
H A DDUPLICATE-sparse_grid_level9 the default rule selection is nested for sparse grids (Genz-Keister
16 sparse grids (refer to the PCE description in the User's Manual for
18 anisotropic tensor grids, the dimension with greatest preference will
21 preference. For PCE with either isotropic or anisotropic sparse grids,
/dports/math/py-yt/yt-4.0.1/yt/frontends/stream/
H A Ddata_structures.py147 self.grids = []
150 self.grids.append(self.grid(id, self))
158 self.grids[gid]._parent_id = pid
159 self.grids[pid]._children_ids.append(self.grids[gid].id)
166 for i, grid in enumerate(self.grids):
174 self.grids = temp_grids
178 mask = np.empty(len(self.grids), dtype="int32")
180 for i, grid in enumerate(self.grids):
215 for g in self.grids:
227 for i, grid in enumerate(self.grids):
[all …]
/dports/graphics/proj/proj-7.2.1/data/sql/
H A Dnkg.sql245 '+proj=deformation +t_epoch=2000.0 +grids=eur_nkg_nkgrf17vel.tif',
972 '+proj=deformation +dt=-3.0 +grids=eur_nkg_nkgrf03vel_realigned.tif',
1187 '+proj=deformation +dt=3.75 +grids=eur_nkg_nkgrf03vel_realigned.tif',
1294 '+proj=deformation +dt=-5 +grids=eur_nkg_nkgrf03vel_realigned.tif',
1401 '+proj=deformation +dt=-0.5 +grids=eur_nkg_nkgrf03vel_realigned.tif',
1506 '+proj=deformation +dt=15.829 +grids=eur_nkg_nkgrf17vel.tif',
1620 '+proj=deformation +dt=-2.44 +grids=eur_nkg_nkgrf17vel.tif',
1736 '+proj=deformation +dt=-3 +grids=eur_nkg_nkgrf17vel.tif',
1852 '+proj=deformation +dt=-7.25 +grids=eur_nkg_nkgrf17vel.tif',
1968 '+proj=deformation +dt=3.75 +grids=eur_nkg_nkgrf17vel.tif',
[all …]
/dports/misc/openvdb/openvdb-9.0.0/openvdb_houdini/openvdb_houdini/
H A DSOP_OpenVDB_To_Polygons.cc653 std::list<openvdb::GridBase::ConstPtr> grids; in cookVDBSop() local
670 grids.push_back(vdbIt->getGrid().copyGrid()); in cookVDBSop()
671 openvdb::ConstPtrCast<openvdb::GridBase>(grids.back())->setName( in cookVDBSop()
690 if (!grids.empty() && !boss.wasInterrupted()) { in cookVDBSop()
692 if (grids.front()->isType<openvdb::FloatGrid>()) { in cookVDBSop()
694 } else if (grids.front()->isType<openvdb::DoubleGrid>()) { in cookVDBSop()
737 std::list<openvdb::GridBase::ConstPtr>& grids, in referenceMeshing() argument
755 openvdb::math::Transform::Ptr transform = grids.front()->transform().copy(); in referenceMeshing()
757 typename GridType::ConstPtr firstGrid = openvdb::gridConstPtrCast<GridType>(grids.front()); in referenceMeshing()
892 for (auto it = grids.begin(); it != grids.end(); ++it) { in referenceMeshing()
[all …]
/dports/science/py-pyscf/pyscf-2.0.1/pyscf/solvent/
H A Dddpcm.py99 if pcmobj.grids.coords is None:
100 pcmobj.grids.build(with_non0tab=True)
128 cached_pol = ddcosmo.cache_fake_multipoles(pcmobj.grids, r_vdw, lmax)
135 psi, vmat = ddcosmo.make_psi_vmat(pcmobj, dm, r_vdw, ui, pcmobj.grids,
219 self.grids.dump_flags(verbose)
223 if self.grids.coords is None:
224 self.grids.build(with_non0tab=True)
253 cached_pol = ddcosmo.cache_fake_multipoles(self.grids, r_vdw, lmax)
268 if not self._intermediates or self.grids.coords is None:
305 if not self._intermediates or self.grids.coords is None:
/dports/math/py-yt/yt-4.0.1/yt/frontends/stream/tests/
H A Dtest_stream_particles.py42 number_of_particles1 = np.sum([grid.NumberOfParticles for grid in ug1.index.grids])
43 number_of_particles2 = np.sum([grid.NumberOfParticles for grid in ug2.index.grids])
48 for grid in ug2.index.grids:
123 number_of_particles3 = np.sum([grid.NumberOfParticles for grid in ug3.index.grids])
124 number_of_particles4 = np.sum([grid.NumberOfParticles for grid in ug4.index.grids])
129 for grid in ug4.index.grids:
/dports/misc/openvdb/openvdb-9.0.0/openvdb/openvdb/unittest/
H A DTestMultiResGrid.cc242 outputFile.write( *mrg.grids() ); in TEST_F()
249 GridPtrVecPtr grids = file.getGrids(); in TEST_F() local
250 EXPECT_EQ( levels, grids->size() ); in TEST_F()
252 for ( size_t i=0; i<grids->size(); ++i ) { in TEST_F()
253 FloatGrid::Ptr grid = gridPtrCast<FloatGrid>(grids->at(i)); in TEST_F()
293 file.write( *mrg.grids() ); in TEST_F()
/dports/science/py-pyscf/pyscf-2.0.1/pyscf/dft/
H A Dgks.py48 if ks.grids.coords is None:
49 ks.grids.build(with_non0tab=True)
51 ks.grids = rks.prune_small_rho_grids_(ks, mol, dm_a+dm_b, ks.grids)
62 n, exc, vxc = ni.nr_uks(mol, ks.grids, ks.xc, (dm_a,dm_b), max_memory=max_memory)
H A Duks.py44 if ks.grids.coords is None:
45 ks.grids.build(with_non0tab=True)
47 ks.grids = rks.prune_small_rho_grids_(ks, mol, dm[0]+dm[1], ks.grids)
61 n, exc, vxc = ni.nr_uks(mol, ks.grids, ks.xc, dm, max_memory=max_memory)
/dports/comms/klog/klog-1.8.5/src/charts/
H A Dstatsgridsonsatswidget.cpp121 QStringList grids; in prepareChart() local
122 grids.clear(); in prepareChart()
157 if (grids.contains((_qsos.at(i)->getGridSquare()).left(4))) in prepareChart()
164 grids.append((_qsos.at(i)->getGridSquare()).left(4)); in prepareChart()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core/src/main/java/de/lmu/ifi/dbs/elki/utilities/referencepoints/
H A DGridBasedReferencePoints.java91 final int grids = gridres + 1; in getReferencePoints() local
92 final int gridpoints = MathUtil.ipowi(grids, dim); in getReferencePoints()
110 int coord = acc % grids; in getReferencePoints()
111 acc /= grids; in getReferencePoints()
/dports/finance/prestashop/prestashop/modules/ps_linklist/src/Core/Grid/
H A DLinkBlockGridFactory.php94 $grids = [];
103 $grids[] = $gridFactory->getGrid($filters);
106 return $grids;
/dports/science/cdo/cdo-2.0.0/test/
H A DNinfo.test.in94 $CDO -O -f nc -merge temp.small temp.global temp.2grids
95 if test 2 -eq $($CDOCOMMAND temp.2grids) ; then echo "ok $NTEST - $CDOTEST temp.2grids";
97 rm -f temp.small temp.global temp.2grids
/dports/misc/openvdb/openvdb-9.0.0/tsc/meetings/
H A D2020-12-01.md15 5) Extrapolating Integer grids in Fast Sweeping
33 5) Extrapolating Integer grids in Fast Sweeping
35 Andre running into some problems attempting to extrapolate integer grids in the
/dports/textproc/R-cran-R2HTML/R2HTML/demo/
H A D00Index3 grids Using grids (ActiveWidget) within HTML documents
/dports/math/py-yt/yt-4.0.1/yt/utilities/tests/
H A Dtest_flagging_methods.py11 criterion = ds.index.grids[0][("gas", "density")] > 0.75
12 assert np.all(od_flag(ds.index.grids[0]) == criterion)
/dports/graphics/proj/proj-7.2.1/src/transformations/
H A Dxyzgridshift.cpp48 ListOfGenericGrids grids{}; member
65 Q->grids = pj_generic_grid_init(P, "grids"); in get_grid_values()
72 auto grid = pj_find_generic_grid(Q->grids, lp, gridset); in get_grid_values()
235 for( auto& grid: Q->grids ) { in reassign_context()
294 Q->grids = pj_generic_grid_init(P, "grids");
/dports/math/vtk9/VTK-9.1.0/IO/CGNS/Testing/Cxx/
H A DTestCGNSUnsteadyGrid.cxx73 std::string grids = fname ? fname : ""; in TestCGNSUnsteadyGrid() local
76 cout << "Opening " << grids.c_str() << endl; in TestCGNSUnsteadyGrid()
78 gridsReader->SetFileName(grids.c_str()); in TestCGNSUnsteadyGrid()
/dports/science/qmcpack/qmcpack-3.11.0/tests/molecules/FeCO6_b3lyp_pyscf/pyscf/
H A DFeCO6.out206 radial grids:
207 Treutler-Ahlrichs (JCP 102, 346 (M4)) radial grids
210 pruning grids: <function nwchem_prune at 0x151641bb32f0>
211 grids dens level: 3
212 symmetrized grids: False
216 atom Fe rad-grids = 90, ang-grids = [ 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 5…
221 atom C rad-grids = 75, ang-grids = [ 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50…
226 atom O rad-grids = 75, ang-grids = [ 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50…
231 tot grids = 189024
232 Drop grids 17150
[all …]
/dports/security/libfprint/libfprint-0.7.0/libfprint/nbis/mindtct/
H A Dinit.c461 rotgrids->grids = (int **)malloc(ndirs * sizeof(int *)); in init_rotgrids()
462 if(rotgrids->grids == (int **)NULL){ in init_rotgrids()
478 rotgrids->grids[dir] = (int *)malloc(grid_size * sizeof(int)); in init_rotgrids()
479 if(rotgrids->grids[dir] == (int *)NULL){ in init_rotgrids()
482 free(rotgrids->grids[_j]); in init_rotgrids()
491 grid = rotgrids->grids[dir]; in init_rotgrids()
/dports/misc/openvdb/openvdb-9.0.0/nanovdb/nanovdb/cmd/convert/
H A Dnanovdb_convert.cc253 auto grids = file.getGrids(); in main() local
254 for (auto& grid : *grids) { in main()
272 openvdb::GridPtrVecPtr grids(new openvdb::GridPtrVec()); in main() local
285 grids->push_back(nanoToOpenVDB(h)); in main()
295 grids->push_back(nanoToOpenVDB(handle)); in main()
298 file.write(*grids); in main()

12345678910>>...159