Home
last modified time | relevance | path

Searched full:lib (Results 1 – 25 of 40) sorted by relevance

12

/libCEED/python/
H A Dceed_constants.py8 from _ceed_cffi import ffi, lib
15 MEM_HOST = lib.CEED_MEM_HOST
16 MEM_DEVICE = lib.CEED_MEM_DEVICE
21 SCALAR_FP32 = lib.CEED_SCALAR_FP32
22 SCALAR_FP64 = lib.CEED_SCALAR_FP64
26 EPSILON = lib.CEED_EPSILON
29 COPY_VALUES = lib.CEED_COPY_VALUES
30 USE_POINTER = lib.CEED_USE_POINTER
31 OWN_POINTER = lib.CEED_OWN_POINTER
37 NORM_1 = lib.CEED_NORM_1
[all …]
H A Dceed_vector.py8 from _ceed_cffi import ffi, lib
29 err_code = lib.CeedVectorCreate(
36 err_code = lib.CeedVectorDestroy(self._pointer)
53 err_code = lib.CeedVectorView(self._pointer[0], fmt, stream)
69 err_code = lib.CeedVectorCopy(vec_source._pointer[0], self._pointer[0])
100 err_code = lib.CeedVectorSetArray(
116 err_code = lib.CeedVectorGetLength(self._pointer[0], length_pointer)
123 err_code = lib.CeedVectorGetArray(
135 return np.frombuffer(buff, dtype=scalar_types[lib.CEED_SCALAR_TYPE])
161 err_code = lib.CeedVectorGetLength(self._pointer[0], length_pointer)
[all …]
H A Dceed_basis.py8 from _ceed_cffi import ffi, lib
33 err_code = lib.CeedBasisView(self._pointer[0], stream)
57 err_code = lib.CeedBasisApply(self._pointer[0], nelem, tmode, emode,
86 err_code = lib.CeedBasisGetNumNodes(self._pointer[0], p_pointer)
102 err_code = lib.CeedBasisGetNumQuadraturePoints(
111 err_code = lib.CeedBasisDestroy(self._pointer)
151 err_code = lib.CeedBasisCreateTensorH1(self._ceed._pointer[0], dim, ncomp,
166 lib.CeedBasisGetNumNodes1D(self._pointer[0], nnodes_pointer)
168 lib.CeedBasisGetNumQuadraturePoints1D(self._pointer[0], nqpts_pointer)
175 lib.CeedBasisGetInterp1D(self._pointer[0], array_pointer)
[all …]
H A Dceed_qfunctioncontext.py8 from _ceed_cffi import ffi, lib
29 err_code = lib.CeedQFunctionContextCreate(
36 err_code = lib.CeedQFunctionContextDestroy(self._pointer)
53 err_code = lib.CeedQFunctionContextView(
90 err_code = lib.CeedQFunctionContextSetData(
110 err_code = lib.CeedQFunctionContextGetContextSize(
118 err_code = lib.CeedQFunctionContextGetData(
129 return np.frombuffer(buff, dtype=scalar_types[lib.CEED_SCALAR_TYPE])
134 if lib.CEED_SCALAR_TYPE == lib.CEED_SCALAR_FP32:
155 err_code = lib.CeedQFunctionDataRestoreData(
H A Dceed_operator.py8 from _ceed_cffi import ffi, lib
22 err_code = lib.CeedOperatorDestroy(self._pointer)
38 err_code = lib.CeedOperatorView(self._pointer[0], stream)
50 err_code = lib.CeedOperatorCheckReady(self._pointer[0])
62 err_code = lib.CeedOperatorLinearAssembleDiagonal(self._pointer[0],
75 err_code = lib.CeedOperatorLinearAssembleAddDiagonal(self._pointer[0],
91 err_code = lib.CeedOperatorLinearAssemblePointBlockDiagonal(self._pointer[0],
107 err_code = lib.CeedOperatorLinearAssembleAddPointBlockDiagonal(self._pointer[0],
119 err_code = lib.CeedOperatorSetName(self._pointer[0], name)
134 err_code = lib.CeedOperatorApply(self._pointer[0], u._pointer[0], v._pointer[0],
[all …]
H A Dceed.py8 from _ceed_cffi import ffi, lib
38 err_code = lib.CeedInit(resourceAscii, self._pointer)
45 lib.CeedSetErrorHandler(
47 lib, error_handlers[on_error]))
62 err_code = lib.CeedView(self._pointer[0], stream)
73 if (err_code != lib.CEED_ERROR_SUCCESS):
75 lib.CeedGetErrorMessage(self._pointer[0], message)
87 err_code = lib.CeedGetResource(self._pointer[0], resource)
101 err_code = lib.CeedGetPreferredMemType(self._pointer[0], memtype)
113 return scalar_types[lib.CEED_SCALAR_TYPE]
[all …]
H A Dceed_qfunction.py8 from _ceed_cffi import ffi, lib
23 err_code = lib.CeedQFunctionDestroy(self._pointer)
39 err_code = lib.CeedQFunctionView(self._pointer[0], stream)
65 err_code = lib.CeedQFunctionApply(self._pointer[0], q, invecs, outvecs)
93 err_code = lib.CeedQFunctionCreateInterior(self._ceed._pointer[0], vlength,
105 err_code = lib.CeedQFunctionSetContext(
124 err_code = lib.CeedQFunctionAddInput(
141 err_code = lib.CeedQFunctionAddOutput(
162 err_code = lib.CeedQFunctionCreateInteriorByName(self._ceed._pointer[0],
181 err_code = lib.CeedQFunctionCreateIdentity(self._ceed._pointer[0], size,
H A Dceed_elemrestriction.py8 from _ceed_cffi import ffi, lib
24 err_code = lib.CeedElemRestrictionDestroy(self._pointer)
40 err_code = lib.CeedElemRestrictionView(self._pointer[0], stream)
59 err_code = lib.CeedElemRestrictionApply(self._pointer[0], tmode, u._pointer[0],
93 err_code = lib.CeedElemRestrictionCreateVector(self._pointer[0], lvecPointer,
118 err_code = lib.CeedElemRestrictionGetMultiplicity(
140 err_code = lib.CeedElemRestrictionGetLLayout(
162 err_code = lib.CeedElemRestrictionGetELayout(
196 err_code = lib.CeedElemRestrictionCreate(self._ceed._pointer[0], nelem,
234 err_code = lib.CeedElemRestrictionCreateOriented(self._ceed._pointer[0], nelem,
[all …]
/libCEED/examples/rust-qfunctions/ex1-volume-rs/
H A DCargo.toml12 # Compiles the crate as a lib (for GPU) and staticlib (for CPU)
13 [lib]
/libCEED/rust/libceed-sys/
H A DREADME.md39 export LD_LIBRARY_PATH=$CEED_DIR/lib
40 export PKG_CONFIG_PATH=$CEED_DIR/lib/pkgconfig
48 export LD_LIBRARY_PATH=$CEED_DIR/target/debug/build/libceed-sys-d1ea22c6e1ad3f23/out/lib
H A Dbuild.rs15 // Install libceed.a or libceed.so to $OUT_DIR/lib in main()
26 out_dir.join("build").join("lib").to_string_lossy() in main()
36 .join("lib") in main()
/libCEED/examples/ceed/
H A DMakefile13 CEED_LIBS ?= -Wl,-rpath,$(abspath $(CEED_DIR)/lib) -L$(CEED_DIR)/lib -lceed -lm
/libCEED/backends/magma/tuning/
H A DMakefile15 LDLIBS ?= -Wl,-rpath,$(abspath $(CEED_DIR)/lib) -L$(CEED_DIR)/lib -lceed -lm
/libCEED/examples/rust-qfunctions/
H A DMakefile13 CEED_LIBS ?= -Wl,-rpath,$(abspath $(CEED_DIR)/lib) -L$(CEED_DIR)/lib -lceed -L$(CEED_DIR)/examples/…
/libCEED/
H A DMakefile211 LIBDIR := $(if $(for_install),$(OBJDIR),lib)
216 libdir = $(prefix)/lib
249 ifneq ($(wildcard ../dealii/install/lib/libdeal_II.*),)
270 ifneq ($(wildcard ../petsc/lib/libpetsc.*),)
278 lib: $(libceed) $(ceed.pc) target
279 # run 'lib' target in parallel
280 par:;@$(MAKE) $(MFLAGS) V=$(V) lib
474 $(info make: 'lib' with optional backends: $(filter-out $(BACKENDS_BUILTIN),$(BACKENDS)))
478 $(info make: 'lib' with backends: $(BACKENDS))
519 ifneq ($(wildcard $(XSMM_DIR)/lib/libxsmm.*),)
[all …]
H A Dceed.pc.template3 libdir=${prefix}/lib
/libCEED/rust/libceed-sys/c-src/
H A DMakefile211 LIBDIR := $(if $(for_install),$(OBJDIR),lib)
216 libdir = $(prefix)/lib
249 ifneq ($(wildcard ../dealii/install/lib/libdeal_II.*),)
270 ifneq ($(wildcard ../petsc/lib/libpetsc.*),)
278 lib: $(libceed) $(ceed.pc) target
279 # run 'lib' target in parallel
280 par:;@$(MAKE) $(MFLAGS) V=$(V) lib
474 $(info make: 'lib' with optional backends: $(filter-out $(BACKENDS_BUILTIN),$(BACKENDS)))
478 $(info make: 'lib' with backends: $(BACKENDS))
519 ifneq ($(wildcard $(XSMM_DIR)/lib/libxsmm.*),)
[all …]
H A Dceed.pc.template3 libdir=${prefix}/lib
/libCEED/examples/nek/
H A DMakefile34 CEED_LIBS ?= -Wl,-rpath,$(CEED_DIR)/lib -L$(CEED_DIR)/lib -lceed
/libCEED/examples/mfem/
H A DMakefile16 CEED_LIBS ?= -Wl,-rpath,$(abspath $(CEED_DIR)/lib) -L$(CEED_DIR)/lib -lceed
/libCEED/doc/bib/
H A Dreferences.bib2 title = {lib{CEED} development site},
48 …title = {{H}igh-performance operator evaluations with ease of use: lib{C}{E}{E}{D}'s {P}ython …
/libCEED/examples/
H A DMakefile19 CEED_LIBS ?= -Wl,-rpath,$(CEED_DIR)/lib -L$(CEED_DIR)/lib -lceed
/libCEED/python/tests/
H A Dtest-3-basis.py57 if libceed.lib.CEED_SCALAR_TYPE == libceed.SCALAR_FP64:
213 libceed.lib.CEED_SCALAR_TYPE])
237 libceed.lib.CEED_SCALAR_TYPE])
281 libceed.lib.CEED_SCALAR_TYPE])
320 libceed.lib.CEED_SCALAR_TYPE])
353 libceed.lib.CEED_SCALAR_TYPE])
/libCEED/examples/solids/
H A DMakefile13 PETSc.pc := $(PETSC_DIR)/$(PETSC_ARCH)/lib/pkgconfig/PETSc.pc
15 ceed.pc := $(CEED_DIR)/lib/pkgconfig/ceed.pc
/libCEED/tests/junit-xml/
H A D.gitignore19 lib

12