| /libCEED/julia/LibCEED.jl/.style/ |
| H A D | ceed_style.jl | 21 t = FST(Binary, cst, nspaces(s)) 46 add_node!(t, paren, s) 47 add_node!(t, n, s, join_lines=true) 49 add_node!(t, paren, s, join_lines=true) 51 add_node!(t, n, s) 55 nrhs && (t.nest_behavior = AlwaysNest) 62 add_node!(t, pretty(style, op, s), s, join_lines=true) 65 add_node!(t, Whitespace(1), s) 66 add_node!(t, pretty(style, op, s), s, join_lines=true) 67 nest ? add_node!(t, Placeholder(1), s) : add_node!(t, Whitespace(1), s) [all …]
|
| /libCEED/backends/avx/ |
| H A D | ceed-avx-tensor.c | 43 … const CeedScalar *restrict t, CeedTransposeMode t_mode, const CeedInt add, in CeedTensorContract_Avx_Blocked() argument 62 rtype tqv = set1(t[(j + jj) * t_stride_0 + b * t_stride_1]); in CeedTensorContract_Avx_Blocked() 85 rtype tqv = set1(t[(j + jj) * t_stride_0 + b * t_stride_1]); in CeedTensorContract_Avx_Blocked() 105 … const CeedScalar *restrict t, CeedTransposeMode t_mode, const CeedInt add, in CeedTensorContract_Avx_Remainder() argument 132 fmadd(vv[jj], tqu, set1(t[(j + jj) * t_stride_0 + b * t_stride_1])); in CeedTensorContract_Avx_Remainder() 141 const CeedScalar tq = t[j * t_stride_0 + b * t_stride_1]; in CeedTensorContract_Avx_Remainder() 153 …dTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *restrict t, in CeedTensorContract_Avx_Single() argument 173 …rtype tqv = set(t[(j + jj * 4 + 3) * t_stride_0 + b * t_stride_1], t[(j + jj * 4 + 2) * t_stride_0… in CeedTensorContract_Avx_Single() 174 …t[(j + jj * 4 + 1) * t_stride_0 + b * t_stride_1], t[(j + jj * 4 + 0) * t_stride_0 + b * t_stride_… in CeedTensorContract_Avx_Single() 197 …rtype tqv = set(t[(j + jj * 4 + 3) * t_stride_0 + b * t_stride_1], t[(j + jj * 4 + 2) * t_stride_0… in CeedTensorContract_Avx_Single() [all …]
|
| /libCEED/backends/opt/ |
| H A D | ceed-opt-tensor.c | 17 … const CeedScalar *restrict t, CeedTransposeMode t_mode, const CeedInt add, in CeedTensorContractApply_Core_Opt() argument 29 CeedScalar tq = t[j * t_stride_0 + b * t_stride_1]; in CeedTensorContractApply_Core_Opt() 40 …dTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *restrict t, in CeedTensorContractApply_Opt() argument 46 if (C == 1) return CeedTensorContractApply_Core_Opt(contract, A, B, 1, J, t, t_mode, add, u, v); in CeedTensorContractApply_Opt() 47 else return CeedTensorContractApply_Core_Opt(contract, A, B, C, J, t, t_mode, add, u, v); in CeedTensorContractApply_Opt()
|
| /libCEED/interface/ |
| H A D | ceed-tensor.c | 94 …dTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *restrict t, in CeedTensorContractApply() argument 96 CeedCall(contract->Apply(contract, A, B, C, J, t, t_mode, add, u, v)); in CeedTensorContractApply() 124 …ract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt D, CeedInt J, const CeedScalar *restrict t, in CeedTensorContractStridedApply() argument 128 … CeedCall(contract->Apply(contract, A, J, C, B, t + d * B * J, t_mode, add, u + d * A * J * C, v)); in CeedTensorContractStridedApply() 132 … CeedCall(contract->Apply(contract, A, B, C, J, t + d * B * J, t_mode, add, u, v + d * A * J * C)); in CeedTensorContractStridedApply()
|
| /libCEED/backends/xsmm/ |
| H A D | ceed-xsmm-tensor.c | 17 …dTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *restrict t, in CeedTensorContractApply_Xsmm() argument 35 gemm_param.a.primary = (CeedScalar *)&t[0]; in CeedTensorContractApply_Xsmm() 55 gemm_param.b.primary = (CeedScalar *)&t[0]; in CeedTensorContractApply_Xsmm()
|
| /libCEED/backends/ref/ |
| H A D | ceed-ref-tensor.c | 16 …dTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *restrict t, in CeedTensorContractApply_Ref() argument 32 CeedScalar tq = t[j * t_stride_0 + b * t_stride_1]; in CeedTensorContractApply_Ref()
|
| /libCEED/examples/fluids/src/ |
| H A D | setupts.c | 19 PetscErrorCode UpdateBoundaryValues(User user, Vec Q_loc, PetscReal t) { in UpdateBoundaryValues() argument 21 if (user->time_bc_set != t) { in UpdateBoundaryValues() 22 PetscCall(DMPlexInsertBoundaryValues(user->dm, PETSC_TRUE, Q_loc, t, NULL, NULL, NULL)); in UpdateBoundaryValues() 23 user->time_bc_set = t; in UpdateBoundaryValues() 31 PetscErrorCode RHS_NS(TS ts, PetscReal t, Vec Q, Vec G, void *user_data) { in RHS_NS() argument 40 PetscCall(UpdateBoundaryValues(user, Q_loc, t)); in RHS_NS() 41 …eed(ceed, CeedOperatorSetContextDouble(user->op_rhs_ctx->op, user->phys->solution_time_label, &t)); in RHS_NS() 103 PetscErrorCode IFunction_NS(TS ts, PetscReal t, Vec Q, Vec Q_dot, Vec G, void *user_data) { in IFunction_NS() argument 115 PetscCall(UpdateBoundaryValues(user, Q_loc, t)); in IFunction_NS() 116 …lCeed(ceed, CeedOperatorSetContextDouble(user->op_ifunction, user->phys->solution_time_label, &t)); in IFunction_NS() [all …]
|
| /libCEED/examples/fluids/ |
| H A D | index.md | 21 \frac{\partial \rho}{\partial t} + \nabla \cdot \bm{U} &= 0 \\ 22 \frac{\partial \bm{U}}{\partial t} + \nabla \cdot \left( \frac{\bm{U} \otimes \bm{U}}{\rho} + P \bm… 23 \frac{\partial E}{\partial t} + \nabla \cdot \left( \frac{(E + P)\bm{U}}{\rho} -\bm{u} \cdot \bm{\s… 39 \frac{\partial \bm{q}}{\partial t} + \nabla \cdot \bm{F}(\bm{q}) -S(\bm{q}) = 0 \, , 77 \bm{q}_N (\bm{x},t)^{(e)} = \sum_{k=1}^{P}\psi_k (\bm{x})\bm{q}_k^{(e)} 86 \int_{\Omega} \bm v \cdot \left(\frac{\partial \bm{q}_N}{\partial t} + \nabla \cdot \bm{F}(\bm{q}_N… 95 \int_{\Omega} \bm v \cdot \left( \frac{\partial \bm{q}_N}{\partial t} - \bm{S}(\bm{q}_N) \right) \… 116 \bm{q}_N^{n+1} = \bm{q}_N^n + \Delta t \sum_{i=1}^{s} b_i k_i \, , 123 k_1 &= f(t^n, \bm{q}_N^n)\\ 124 k_2 &= f(t^n + c_2 \Delta t, \bm{q}_N^n + \Delta t (a_{21} k_1))\\ [all …]
|
| H A D | navierstokes.h | 304 PetscErrorCode RHS_NS(TS ts, PetscReal t, Vec Q, Vec G, void *user_data); 307 PetscErrorCode IFunction_NS(TS ts, PetscReal t, Vec Q, Vec Q_dot, Vec G, void *user_data); 316 PetscErrorCode UpdateBoundaryValues(User user, Vec Q_loc, PetscReal t);
|
| /libCEED/examples/petsc/ |
| H A D | dmswarm.c | 53 PetscErrorCode EvalU_Tanh_proj(PetscInt dim, PetscReal t, const PetscReal x[], PetscInt num_comp, P… 54 PetscErrorCode EvalU_Poly_proj(PetscInt dim, PetscReal t, const PetscReal x[], PetscInt num_comp, P… 55 PetscErrorCode EvalU_Sphere_proj(PetscInt dim, PetscReal t, const PetscReal x[], PetscInt num_comp,… 302 PetscErrorCode EvalU_Poly_proj(PetscInt dim, PetscReal t, const PetscReal x[], PetscInt num_comp, P… in EvalU_Poly_proj() argument 310 PetscErrorCode EvalU_Tanh_proj(PetscInt dim, PetscReal t, const PetscReal x[], PetscInt num_comp, P… in EvalU_Tanh_proj() argument 318 PetscErrorCode EvalU_Sphere_proj(PetscInt dim, PetscReal t, const PetscReal x[], PetscInt num_comp,… in EvalU_Sphere_proj() argument
|
| /libCEED/examples/fluids/qfunctions/ |
| H A D | turb_spanstats.h | 75 const CeedScalar t = context->time; in ChildStatsCollectionMMSTest() local 82 v[0][i] = wdetJ * (ChildStatsCollectionTest_Exact(x_i) + t - 0.5) * 4 * Cube(x_i[2]); in ChildStatsCollectionMMSTest()
|
| H A D | stg_shur14.h | 157 CEED_QFUNCTION_HELPER void StgShur14Calc(const CeedScalar X[3], const CeedScalar t, const CeedScala… in StgShur14Calc() argument 168 xhat[0] = (X[0] - stg_ctx->u0 * t) * Max(2 * kappa[0] / kappa[n], 0.1); in StgShur14Calc() 198 CEED_QFUNCTION_HELPER void StgShur14Calc_PrecompEktot(const CeedScalar X[3], const CeedScalar t, co… in StgShur14Calc_PrecompEktot() argument 213 xhat[0] = (X[0] - stg_ctx->u0 * t) * Max(2 * kappa[0] / kappa[n], 0.1); in StgShur14Calc_PrecompEktot()
|
| H A D | bc_freestream.h | 165 const CeedScalar t = exp(x / width); in Softplus_fwd() local 166 return t / (1 + t); in Softplus_fwd()
|
| /libCEED/examples/nek/ |
| H A D | README.md | 51 -t|-test Run in test mode (not on by default)
|
| /libCEED/tests/junit-xml/ |
| H A D | README.rst | 17 something doesn't work like you expect it to.
|
| /libCEED/ |
| H A D | .mailmap | 4 # addresses to current versions, though we don't do that here.
|
| H A D | Makefile | 332 tests.c := $(sort $(wildcard tests/t[0-9][0-9][0-9]-*.c)) 333 tests.f := $(if $(FC),$(sort $(wildcard tests/t[0-9][0-9][0-9]-*.f90))) 807 search ?= t ex 936 format.ch := $(filter-out include/ceedf.h $(wildcard tests/t*-f.h) $(wildcard examples/ceed/ex*-f.h…
|
| H A D | CONTRIBUTING.md | 56 …n issue if you believe your contributions have met these criteria and haven't yet been acknowledge…
|
| H A D | Doxyfile | 199 # less readable) file names. This can be useful is your file systems doesn't 840 # a documented function twice, or documenting parameters that don't exist or 2247 # so different doxyrules.make files included by the same Makefile don't 2701 # Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal
|
| /libCEED/tests/ |
| H A D | junit_common.py | 786 …t for t in get_test_args(suite_spec.get_source_path(test)) if re.search(search, t.name, re.IGNOREC…
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | Basis.jl | 356 getdimension(t::Topology) 360 function getdimension(t::Topology) 361 return Int(t) >> 16
|
| /libCEED/include/ceed/ |
| H A D | backend.h | 361 …sorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *__restrict__ t, 364 … const CeedScalar *__restrict__ t, CeedTransposeMode t_mode, const CeedInt add,
|
| /libCEED/rust/libceed-sys/c-src/ |
| H A D | Makefile | 332 tests.c := $(sort $(wildcard tests/t[0-9][0-9][0-9]-*.c)) 333 tests.f := $(if $(FC),$(sort $(wildcard tests/t[0-9][0-9][0-9]-*.f90))) 807 search ?= t ex 936 format.ch := $(filter-out include/ceedf.h $(wildcard tests/t*-f.h) $(wildcard examples/ceed/ex*-f.h…
|
| /libCEED/doc/sphinx/source/ |
| H A D | CONTRIBUTING.md | 56 …n issue if you believe your contributions have met these criteria and haven't yet been acknowledge…
|
| /libCEED/julia/LibCEED.jl/src/generated/ |
| H A D | libceed_bindings.jl | 1142 function CeedTensorContractApply(contract, A, B, C, J, t, t_mode, Add, u, v) argument 1143 …nsposeMode, CeedInt, Ptr{CeedScalar}, Ptr{CeedScalar}), contract, A, B, C, J, t, t_mode, Add, u, v) 1146 function CeedTensorContractStridedApply(contract, A, B, C, D, J, t, t_mode, add, u, v) argument 1147 …oseMode, CeedInt, Ptr{CeedScalar}, Ptr{CeedScalar}), contract, A, B, C, D, J, t, t_mode, add, u, v)
|