Home
last modified time | relevance | path

Searched full:clone (Results 1 – 11 of 11) sorted by relevance

/libCEED/tests/junit-xml/
H A DREADME.rst31 You can also clone the Git repository from Github and install it manually:
35 git clone https://github.com/kyrus/python-junit-xml.git
/libCEED/python/
H A DREADME.md9 or in a clone of the repository via `pip install .`
/libCEED/rust/libceed/src/
H A Dlib.rs54 #[derive(Clone, Copy, PartialEq, Eq)]
62 #[derive(Clone, Copy, PartialEq, Eq)]
72 #[derive(Clone, Copy, PartialEq, Eq)]
80 #[derive(Clone, Copy, PartialEq, Eq)]
87 #[derive(Clone, Copy, PartialEq, Eq)]
94 #[derive(Clone, Copy, PartialEq, Eq)]
106 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
221 impl Clone for Ceed {
222 /// Perform a shallow clone of a Ceed context
226 /// let ceed_clone = ceed.clone();
[all …]
H A Doperator.rs889 .map(|i| unsafe { crate::OperatorField::from_raw(inputs_slice[i], ceed.clone()) }) in inputs()
959 .map(|i| unsafe { crate::OperatorField::from_raw(outputs_slice[i], ceed.clone()) }) in outputs()
/libCEED/examples/python/
H A Dtutorial-6-shell.ipynb71 "Clone or download libCEED by running"
80 "! git clone https://github.com/CEED/libCEED.git"
/libCEED/examples/rust-qfunctions/ex1-volume-rs/src/
H A Dlib.rs27 #[derive(Debug, Copy, Clone)]
/libCEED/doc/sphinx/source/
H A DlibCEEDdev.md40 …` object uses its fallback `/gpu/cuda/ref` {ref}`Ceed` object to create a clone of the {ref}`CeedO…
41 … This clone {ref}`CeedOperator` is then used for the unimplemented preconditioning support methods.
/libCEED/
H A D.gitlab-ci.yml105 …- cd .. && export MFEM_VERSION=mfem-4.7 && { [[ -d $MFEM_VERSION ]] || { git clone --depth 1 --bra…
110 …- cd .. && export NEK5K_VERSION=Nek5000-19.0 && { [[ -d $NEK5K_VERSION ]] || { git clone --depth 1…
272 …- cd .. && export MFEM_VERSION=mfem-4.7 && { [[ -d $MFEM_VERSION ]] || { git clone --depth 1 --bra…
277 …- cd .. && export NEK5K_VERSION=Nek5000-19.0 && { [[ -d $NEK5K_VERSION ]] || { git clone --depth 1…
H A DREADME.md109 or in a clone of the repository via `pip install .`.
/libCEED/interface/
H A Dceed-preconditioning.c121 // Clone Op in CeedOperatorCreateFallback()
1046 // -- Clone input fields in CeedOperatorMultigridLevelCreateSingle_Core()
1069 // -- Clone output fields in CeedOperatorMultigridLevelCreateSingle_Core()
1093 // -- Clone QFunctionAssemblyData in CeedOperatorMultigridLevelCreateSingle_Core()
1168 // Clone name in CeedOperatorMultigridLevelCreateSingle_Core()
/libCEED/examples/solids/
H A Delasticity.c51 DM dm_orig; // Distributed DM to clone in main()