Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 114) sorted by relevance

12345

/petsc/src/sys/perfstubs/
H A Dtimer_f.h13 #define PERFSTUBS_INITIALIZE() call ps_initialize()
14 #define PERFSTUBS_FINALIZE() call ps_finalize()
15 #define PERFSTUBS_DUMP_DATA() call ps_dump_data()
16 #define PERFSTUBS_REGISTER_THREAD() call ps_register_thread()
18 call ps_timer_create_fortran(_timer_object, _timer_name//CHAR(0))
20 call ps_timer_start_fortran(_timer_object)
22 call ps_timer_stop_fortran(_timer_object)
24 call ps_set_parameter(_parameter_name//CHAR(0), parameter_value)
26 call ps_dynamic_phase_start(_phase_prefix//CHAR(0), _iteration_index)
28 call ps_dynamic_phase_stop(_phase_prefix//CHAR(0), _iteration_index)
[all …]
/petsc/include/petsc/finclude/
H A Dpetscsysbase.h137 #define SETERRQ(c, ierr, s) call PetscError(c, ierr, PETSC_ERROR_INITIAL, s); return
138 #define SETERRA(c, ierr, s) call PetscError(c, ierr, PETSC_ERROR_INITIAL, s); call MPIU_Abort(c, i…
140 #define CHKERRQ(ierr) if (ierr .ne. 0) then;call PetscErrorF(ierr,__LINE__,__FILE__);return;endif
141 #define CHKERRA(ierr) if (ierr .ne. 0) then;call PetscErrorF(ierr,__LINE__,__FILE__);call MPIU_Abor…
142 #define CHKERRMPI(ierr) if (ierr .ne. 0) then;call PetscErrorMPI(ierr,__LINE__,__FILE__);return;end…
143 #define CHKERRMPIA(ierr) if (ierr .ne. 0) then;call PetscErrorMPI(ierr,__LINE__,__FILE__);call MPIU…
145 #define CHKERRQ(ierr) if (ierr .ne. 0) then;call PetscErrorF(ierr);return;endif
146 #define CHKERRA(ierr) if (ierr .ne. 0) then;call PetscErrorF(ierr);call MPIU_Abort(PETSC_COMM_SELF,…
147 #define CHKERRMPI(ierr) if (ierr .ne. 0) then;call PetscErrorMPI(ierr);return;endif
148 #define CHKERRMPIA(ierr) if (ierr .ne. 0) then;call PetscErrorMPI(ierr);call MPIU_Abort(PETSC_COMM_…
[all …]
/petsc/
H A Dgmakefile15 # $(call SONAME_FUNCTION,libfoo,abiversion)
17 # $(call SONAME_SFX_FUNCTION,libfoo,abiversion)
19 # $(call SL_LINKER_FUNCTION,libfoo,abiversion,libversion)
20 SL_LINKER_FUNCTION ?= -shared -Wl,-soname,$(call SONAME_FUNCTION,$(notdir $(1)),$(2))
29 soname_function = $(call SONAME_SFX_FUNCTION,$(1),$(libpetsc_abi_version))
30 libname_function = $(call SONAME_SFX_FUNCTION,$(1),$(libpetsc_lib_version))
32 sl_linker_args = $(call SL_LINKER_FUNCTION,$(call absbasename_all,$@),$(libpetsc_abi_version),$(lib…
35 libpetsc_soname := $(call soname_function,$(LIBDIR)/libpetsc)
36 libpetsc_libname := $(call libname_function,$(LIBDIR)/libpetsc)
39 libpetscpkgs_soname := $(foreach pkg, $(pkgs), $(call soname_function,$(LIBDIR)/libpetsc$(pkg)))
[all …]
H A Dgmakefile.test117 PETSC_COMPILE.c = $(call quiet,$(cc_name)) -c $(PCC_FLAGS) $($(CLANGUAGE)FLAGS) $(CCPPFLAGS) $(C_DE…
118 PETSC_COMPILE.cxx = $(call quiet,CXX) -c $(CXX_FLAGS) $(CXXFLAGS) $(CXXCPPFLAGS) $(CXX_DEPFLAGS)
119 PETSC_COMPILE.cu = $(call quiet,CUDAC) -c $(MPICXX_INCLUDES) $(CUDAC_FLAGS) $(CUDAPP_FLAGS) $(CUDAF…
120 PETSC_COMPILE.hip.cxx = $(call quiet,HIPC) -c $(MPICXX_INCLUDES) $(HIPC_FLAGS) $(HIPPP_FLAGS) $(HIP…
121 PETSC_COMPILE.sycl.cxx = $(call quiet,SYCLC) -c $(MPICXX_INCLUDES) $(SYCLC_FLAGS) $(SYCLPP_FLAGS) $…
123 PETSC_COMPILE.F = $(call quiet,FC) -c $(FC_FLAGS) $(FFLAGS) $(FCPPFLAGS) $(FC_DEPFLAGS)
128 …KOKKOS_COMPILE = $(call quiet,KOKC) -c $(CUDAC_FLAGS) ${PETSC_CXXCPPFLAGS} $(CUDACPPFLAGS) $(CUDA_…
162 testsrcs.o := $(foreach pkg, $(pkgs), $(call concattestlang,$(pkg),$(testlangs)))
167 ifneq (,$(findstring win32fe,$(call quiet,$(cc_name))))
203 …$(call quiet,FCMOD) $(TESTMODDIR) && $(FC) -c $(FC_FLAGS) $(FFLAGS) $(FCPPFLAGS) $(FC_DEPFLAGS) -I…
[all …]
/petsc/config/BuildSystem/config/
H A Dlibraries.py112 …def add(self, libName, funcs, libDir = None, otherLibs = [], prototype = '', call = '', fortranMan… argument
117 if self.check(libName, funcs, libDir, otherLibs, prototype, call, fortranMangle):
186 …def check(self, libName, funcs, libDir = None, otherLibs = [], prototype = '', call = '', fortranM… argument
211 if call:
212 if isinstance(call, str):
213 body = call
215 body = call[f]
303 …def checkClassify(self, libName, funcs, libDir=None, otherLibs=[], prototype='', call='', fortranM… argument
308 …if self.check(libName, funcs, libDir, otherLibs, prototype, call, fortranMangle, cxxMangle, cxxLin…
327 if self.check('', funcs, prototype = prototypes, call = calls):
[all …]
/petsc/src/sys/tests/
H A Dex34.c10 #define CALL(call) PetscCall(PetscPrintf(PETSC_COMM_WORLD, "%-32s -> %s\n", #call, (call) ? "True" … argument
H A Dex39.c10 #define CALL(call) PetscCall(PetscPrintf(PETSC_COMM_WORLD, "%s -> %s\n", #call, (call) ? "True" : "… argument
/petsc/config/PETSc/options/
H A DscalarTypes.py92 …if self.libraries.check('quadmath','logq',prototype='#include <quadmath.h>',call='__float128 f = 0…
98 if self.libraries.check('quadmath',' ',call = ' real*16 s,w; w = 2.0; s = cos(w)'):
115 …if self.libraries.check('quadmath','logq',prototype='#include <quadmath.h>',call='__float128 f = F…
125 …self.libraries.add('quadmath','logq',prototype='#include <quadmath.h>',call='__float128 f = 0.0; l…
130 …if self.libraries.check('','',call='__fp16 f = 1.0, g; g = ret___fp16(f); (void)g',prototype='stat…
/petsc/doc/manual/
H A Dadvanced.md15 MatCreateSubMatrix(Mat A,IS rows,IS cols,MatReuse call,Mat *B);
19 `B`. If call is `MAT_INITIAL_MATRIX` it will create the matrix
20 `B`. If call is `MAT_REUSE_MATRIX` it will reuse the `B` created
21 with a previous call. This function is used internally by `PCFIELDSPLIT`.
26 MatCreateSubMatrices(Mat A,PetscInt n,IS rows[],IS cols[],MatReuse call,Mat *B[]);
30 sequential matrices `B[k]` on this process. If call is `MAT_INITIAL_MATRIX` it will create the arra…
31 `B`. If call is `MAT_REUSE_MATRIX` it will reuse the `B` created
32 with a previous call. The `IS` arguments are sequential. The array of matrices should be destroyed …
39 MatCreateSubMatricesMPI(Mat A,PetscInt n,IS rows[],IS cols[],MatReuse call,Mat *B[]);
198 Why provide the plain `XXXFactor` routines when one could simply call
[all …]
/petsc/src/ksp/ksp/tutorials/output/
H A Dex55_hypre_device.out29 Maximum number of iterations PER hypre call 1
30 Convergence tolerance PER hypre call 0.
H A Dex55_hypre_device_alt.out27 Maximum number of iterations PER hypre call 1
28 Convergence tolerance PER hypre call 0.
H A Dex49_hypre_nullspace_alt.out22 Maximum number of iterations PER hypre call 1
23 Convergence tolerance PER hypre call 0.
H A Dex49_hypre_nullspace.out23 Maximum number of iterations PER hypre call 1
24 Convergence tolerance PER hypre call 0.
/petsc/lib/petsc/bin/maint/
H A Dgenerateetags.py87 …status = subprocess.call('ctags --fields=+l --tag-relative=yes --langmap=c:+.cu -I PeNS,PeOP -a -f…
89 …status = subprocess.call('/usr/local/bin/ctags -a -f '+ctagfile+' '+' '.join(frlist), shell=True, …
91 …status = subprocess.call('ctags -a -f '+ctagfile+' '+' '.join(frlist), shell=True, stdout=DEVNULL,…
H A DnormalizeOutput.py20 subprocess.call("git mv "+ofile+" "+newname,shell=True)
/petsc/src/ksp/ksp/tests/output/
H A Dex3_hypre.out15 Maximum number of iterations PER hypre call 1
16 Convergence tolerance PER hypre call 0.
H A Dex3_hypre_alt.out15 Maximum number of iterations PER hypre call 1
16 Convergence tolerance PER hypre call 0.
/petsc/config/PETSc/
H A Dpetsc.py237 …therLibs, prototype = 'typedef struct _p_Vec *Vec;int VecDestroy(Vec*);', call = 'VecDestroy((Vec*…
238 …therLibs, prototype = 'typedef struct _p_Mat *Mat;int MatDestroy(Mat*);', call = 'MatDestroy((Mat*…
239 …lf.otherLibs, prototype = 'typedef struct _p_DM *DA;int DMDestroy(DA*);', call = 'DMDestroy((DA*) …
240 …therLibs, prototype = 'typedef struct _p_KSP *KSP;int KSPDestroy(KSP*);', call = 'KSPDestroy((KSP*…
241 …Libs, prototype = 'typedef struct _p_SNES *SNES;int SNESDestroy(SNES*);', call = 'SNESDestroy((SNE…
242 …lf.otherLibs, prototype = 'typedef struct _p_TS *TS;int TSDestroy(TS*);', call = 'TSDestroy((TS*) …
/petsc/src/vec/pf/impls/string/
H A Dmakefile19 …${CLINKER} $(call SL_LINKER_FUNCTION,petscdlib,1,0) petscdlib.o -o libpetscdlib.${SL_LINKER_SUFFIX…
/petsc/src/ksp/pc/tests/output/
H A Dex10_1.out6 Maximum number of iterations PER hypre call 1
7 Convergence tolerance PER hypre call 0.
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A DREADME.rst8 configured for that cursor. If it does, it will call the handler (which may attach some
129 - func: This will be a cursor corresponding to a detected call to ``MyCheckingMacro()``
145 function, it is called only once for each found instance of a function call.
168 whether A. to check a call at all, and B. which function to check with.
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DScatter.pyx272 This call has to be concluded with a call to `end`.
295 This call has to be preceded by a call to `begin`.
H A DSF.pyx439 Root values are reduced to leaf values. This call has to be concluded
440 with a call to `bcastEnd`.
494 This call has to be completed with call to `reduceEnd`.
549 This call has to be completed with `scatterEnd`.
597 This call has to be completed with `gatherEnd`.
650 This call has to be completed with `fetchAndOpEnd`.
679 """End operation started in a matching call to `fetchAndOpBegin`.
/petsc/config/BuildSystem/config/utilities/
H A DfortranCommandLine.py34 …if self.libraries.check('','', call = ' integer i\n character(len=80) arg\n i = com…
/petsc/doc/changes/
H A D318.md16 … you call `MatSetOption()` with one of the above options and it is intended to stay with the matri…
84 - Change `PetscCall()` from Fortran so that `call PetscFunction(args,ierr);CHKERRQ(ierr);` can be r…
85 - Add `PetscCallA()` from Fortran so that `call PetscFunction(args,ierr);CHKERRA(ierr);` can be rep…
86 - Add `PetscCallMPI()` and `PetscCallMPIA()` that may be used to call MPI functions from Fortran
195call to `MatTranspose()` with `MAT_INITIAL_MATRIX`. Add `MatTransposeSetPrecursor()` to allow usin…

12345