| /petsc/src/ksp/ksp/tutorials/amrex/ |
| H A D | MyTest.cxx | 97 pp.query("max_level", max_level); in readParameters() 98 pp.query("n_cell", n_cell); in readParameters() 99 pp.query("max_grid_size", max_grid_size); in readParameters() 100 pp.query("is_periodic", is_periodic); in readParameters() 101 pp.query("eb_is_dirichlet", eb_is_dirichlet); in readParameters() 103 pp.query("plot_file", plot_file_name); in readParameters() 115 pp.query("verbose", verbose); in readParameters() 116 pp.query("bottom_verbose", bottom_verbose); in readParameters() 117 pp.query("max_iter", max_iter); in readParameters() 118 pp.query("max_fmg_iter", max_fmg_iter); in readParameters() [all …]
|
| /petsc/src/sys/objects/device/impls/host/ |
| H A D | hostcontext.cxx | 22 static PetscErrorCode query(PetscDeviceContext, PetscBool *idle) noexcept in query() function in Petsc::device::host::impl::DeviceContext 36 PetscDesignatedInitializer(query, query),
|
| /petsc/doc/developers/ |
| H A D | testing.md | 684 /usr/bin/gmake --no-print-directory test query='requires' queryval='*MPI_PROCESS_SHARED_MEMORY*' 759 - `query` and `queryval` (or `q` and `qv`) 761 - `query` corresponds to test harness keyword, `queryval` to the value. Example: 764 $ make print-test query='suffix' queryval='basic_1' 767 - Invokes `config/query_tests.py` to query the tests (see 809 $ make print-test query='suffix' queryval='basic_1' 813 $ make print-test query='requires' queryval='cuda' 817 $ make print-test query='requires' queryval='defined(PETSC_HAVE_MPI_GPU_AWARE)' 821 $ make print-test query='requires' queryval='*GPU_AWARE*' 829 $ make print-test query='name' queryval='vec_is*ex1*basic*1' [all …]
|
| H A D | objects.md | 257 `PetscObjectQuery()` calls the `query(PetscObject,const char *name,PetscObject*)` function pointer … 288 `query()`, `composefunction()`, and `queryfunction()` functions 322 The PETSc object `compose()` and `query()` functions are as follows
|
| /petsc/src/sys/objects/device/impls/sycl/ |
| H A D | syclcontext.sycl.cxx | 53 …const struct _DeviceContextOps ops = {destroy, changeStreamType, setUp, query, waitForContext, syn… 85 static PetscErrorCode query(PetscDeviceContext dctx, PetscBool *idle) noexcept in query() function in Petsc::device::sycl::impl::DeviceContext 100 PetscCall(query(dctx, &idle)); in synchronize()
|
| /petsc/src/sys/objects/device/impls/cupm/ |
| H A D | cupmcontext.hpp | 201 static PetscErrorCode query(PetscDeviceContext, PetscBool *) noexcept; 229 PetscDesignatedInitializer(query, query), 324 inline PetscErrorCode DeviceContext<T>::query(PetscDeviceContext dctx, PetscBool *idle) noexcept in query() function in Petsc::device::cupm::impl::DeviceContext 364 PetscCall(query(dctx, &idle)); in synchronize()
|
| /petsc/src/binding/petsc4py/test/ |
| H A D | test_object.py | 156 self.assertTrue(type(self.obj.query('myobj')) is self.CLASS) 157 self.assertEqual(self.obj.query('myobj'), myobj) 161 self.assertEqual(self.obj.query('myobj'), None)
|
| /petsc/config/ |
| H A D | query_tests.py | 92 def query(invDict,fields,labels): function 257 resList=query(invDict, fields, labels)
|
| /petsc/doc/changes/ |
| H A D | 323.md | 30 - Add `PetscObjectHasFunction()` to query for the presence of a composed method 61 …`, and then `PetscKDTreeQueryPointsNearestNeighbor()` for actually doing the nearest-neighbor query
|
| H A D | 316.md | 93 - Add `VecBoundToCPU()` to query information set with `VecBindToCPU()` 131 - Add `MatBoundToCPU()` to query information set with `MatBindToCPU()`
|
| H A D | 313.md | 27 - Add ISGetInfo(): query local and global properties of an IS
|
| H A D | 317.md | 46 …eagerly initialize a `PetscDeviceType`, and `PetscDeviceInitialized()` to query the corresponding … 53 - Add `PetscHasAttribute()` macro to query for existence of an `__attribute__` specifier
|
| H A D | 314.md | 106 - Add VecGetOffloadMask to query a Vec's offload mask
|
| /petsc/src/ksp/ksp/tests/ |
| H A D | ex63.cxx | 122 if (!Amesos2::query(solver_name)) { in main()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | Object.pyx | 343 query, petsc.PetscObjectCompose 352 def query(self, name: str) -> Object: member in Object
|
| /petsc/doc/manual/ |
| H A D | tests.md | 106 $ make test query='requires' queryval='*MPI_PROCESS_SHARED_MEMORY*'
|
| H A D | dmcommonality.md | 86 For `DMNETWORK`, the connectivity information is defined by a graph, which is is query-able at each…
|
| H A D | fe.md | 36 …tscDS` object describing the discrete system on that subdomain. There are query functions to get t…
|
| /petsc/ |
| H A D | gmakefile.test | 401 else ifdef query 402 …-petsc-dir=$(PETSC_DIR) --petsc-arch=$(PETSC_ARCH) --searchin=$(searchin) '$(query)' '$(queryval)') 531 -@echo " ${OMAKE} test query='requires' queryval='*MPI_PROCESS_SHARED_MEMORY*'"
|
| /petsc/include/petsc/private/ |
| H A D | deviceimpl.h | 215 PetscErrorCode (*query)(PetscDeviceContext, PetscBool *); member
|
| /petsc/src/sys/objects/device/interface/ |
| H A D | dcontext.cxx | 481 PetscUseTypeMethod(dctx, query, idle); in PetscDeviceContextQueryIdle()
|
| /petsc/doc/community/meetings/2023/ |
| H A D | index.md | 809 to define and query the network components through simple abstractions.
|
| /petsc/doc/faq/ |
| H A D | index.md | 1317 options before calling `PetscOptionsGetXXX()` to query the status of said option.
|
| /petsc/doc/ |
| H A D | petsc.bib | 1779 …url = {http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids=14…
|