Home
last modified time | relevance | path

Searched full:src (Results 1 – 23 of 23) sorted by relevance

/libCEED/examples/deal.II/
H A Dbps-kokkos.h75 const Portable::DeviceVector<Number> &src, in operator()
79 fe_eval.read_dof_values(src); in operator()
99 const Portable::DeviceVector<Number> &src, in operator()
103 fe_eval.read_dof_values(src); in operator()
172 vmult(VectorType &dst, const VectorType &src) const override in vmult() argument
181 this->vmult_internal<1, 1, 2>(dst, src); in vmult()
183 this->vmult_internal<1, 2, 3>(dst, src); in vmult()
185 this->vmult_internal<dim, 1, 2>(dst, src); in vmult()
187 this->vmult_internal<dim, 2, 3>(dst, src); in vmult()
189 this->vmult_internal<1, 1, 3>(dst, src); in vmult()
[all …]
H A Dbps-cpu.h91 vmult(VectorType &dst, const VectorType &src) const override in vmult() argument
95 matrix_free.cell_loop(&OperatorDealii::do_cell_integral_range<1>, this, dst, src, true); in vmult()
101 matrix_free.cell_loop(&OperatorDealii::do_cell_integral_range<dim>, this, dst, src, true); in vmult()
174 const VectorType &src, in do_cell_integral_range() argument
182 phi.read_dof_values(src); // read source vector in do_cell_integral_range()
H A Dbps-ceed.h267 vmult(VectorType &dst, const VectorType &src) const override in vmult() argument
270 src.update_ghost_values(); in vmult()
275 x.import_array(src, CEED_MEM_HOST); in vmult()
286 src.zero_out_ghost_values(); in vmult()
H A Dbps.h115 vmult(VectorType &dst, const VectorType &src) const = 0;
/libCEED/backends/sycl/
H A Donline_compiler.hpp116 std::vector<byte> compile(const std::string &src, const Tys &...args);
190 /// @param src - contents of the source.
195 std::vector<byte> online_compiler<source_language::opencl_c>::compile(const std::string &src, const…
198 // /// @param src - contents of the source.
202 // online_compiler<source_language::opencl_c>::compile(const std::string &src) {
203 // return compile(src, std::vector<std::string>{});
206 /// Compiles the given CM source \p src.
207 /// @param src - contents of the source.
211 std::vector<byte> online_compiler<source_language::cm>::compile(const std::string &src, const std::…
213 /// Compiles the given CM source \p src.
[all …]
/libCEED/rust/libceed-sys/
H A Dbuild.rs30 .current_dir("c-src"); in main()
49 println!("cargo:rerun-if-changed=c-src/include/ceed.h"); in main()
50 println!("cargo:rerun-if-changed=c-src/include/ceed/types.h"); in main()
51 println!("cargo:rerun-if-changed=c-src/Makefile"); in main()
52 if Path::new("c-src/config.mk").is_file() { in main()
53 println!("cargo:rerun-if-changed=c-src/config.mk"); in main()
62 .header("c-src/include/ceed.h") in main()
H A DCargo.toml23 "src/**",
24 "c-src/**",
H A DREADME.md32 …flags for the C project, we recommend using `make -C c-src configure` to cache arguments in `c-src
/libCEED/examples/solids/
H A DMakefile29 SRCDIR := src
32 src.c := elasticity.c $(sort $(wildcard $(PROBLEMDIR)/*.c)) $(sort $(wildcard $(SRCDIR)/*.c))
33 src.o = $(src.c:%.c=$(OBJDIR)/%.o)
37 elasticity: $(src.o) | $(PETSc.pc) $(ceed.pc)
81 -include $(src.o:%.o=%.d)
/libCEED/examples/fluids/
H A DMakefile49 SRCDIR := src
52 src.c := navierstokes.c $(sort $(wildcard $(PROBLEMDIR)/*.c)) $(sort $(wildcard $(SRCDIR)/*.c))
53 src.o = $(src.c:%.c=$(OBJDIR)/%.o)
57 navierstokes: $(src.o) | $(PETSc.pc) $(ceed.pc)
100 -include $(src.o:%.o=%.d)
/libCEED/include/ceed/jit-source/sycl/
H A Dsycl-ref-qfunction.h15 inline void readQuads(CeedInt N, CeedInt stride, CeedInt offset, const CeedScalar *src, CeedScalar … in readQuads() argument
16 for (CeedInt i = 0; i < N; ++i) dest[i] = src[stride * i + offset]; in readQuads()
22 inline void writeQuads(CeedInt N, CeedInt stride, CeedInt offset, const CeedScalar *src, CeedScalar… in writeQuads() argument
23 for (CeedInt i = 0; i < N; ++i) dest[stride * i + offset] = src[i]; in writeQuads()
/libCEED/julia/LibCEED.jl/gen/
H A Dgenerator.toml3 output_file_path = "../src/generated/libceed_bindings.jl"
/libCEED/
H A D.codecov.yml9 - "julia/LibCEED.jl/src/generated/*.jl"
H A DMakefile747 $(OBJDIR)/fluids-% : examples/fluids/%.c examples/fluids/src/*.c examples/fluids/*.h examples/fluid…
754 examples/solids/problems/*.c examples/solids/src/*.c \
H A D.gitlab-ci.yml195 - rustup component add rust-src --toolchain nightly
H A DDoxyfile908 # directories like /usr/src/myproject. Separate the files or directories with
/libCEED/examples/petsc/
H A DMakefile29 SRCDIR := src
107 -include $(src.o:%.o=%.d)
H A Ddmswarm.c11 // This example combines elements of PETSc src/impls/dm/swam/tutorials/ex1.c and src/impls/dm/swarm…
/libCEED/rust/libceed/tests/
H A Dversion-numbers.rs31 version_sync::assert_html_root_url_updated!(get_rel_path("src/lib.rs").to_str().unwrap()); in test_html_root_url()
/libCEED/.github/workflows/
H A Djulia-test-with-style.yml41 …ntiate()' && julia --project=.style/ .style/ceed_style.jl && git diff --exit-code src test examples
/libCEED/julia/LibCEED.jl/.style/
H A Dceed_style.jl163 prefix_path.(["src", "test", "examples", ".style"]),
/libCEED/include/ceed/
H A Dtypes.h62 // ex1-volume-rs/src/lib.rs
/libCEED/rust/libceed-sys/c-src/
H A DMakefile747 $(OBJDIR)/fluids-% : examples/fluids/%.c examples/fluids/src/*.c examples/fluids/*.h examples/fluid…
754 examples/solids/problems/*.c examples/solids/src/*.c \