Home
last modified time | relevance | path

Searched refs:C (Results 1 – 10 of 10) sorted by relevance

/honee/
H A Dpytorch_pkgconfig.py6 import torch.utils.cpp_extension as C namespace
27 variables['prefix'] = Path(C.library_paths()[0]).parent.as_posix()
34 for include_path in C.include_paths():
50 for lib_path in C.library_paths():
57 for lib_path in C.library_paths():
H A DREADME.md38 $ make -j8 -C libCEED
H A DDoxyfile233 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
235 # to treat a multi-line C++ comment block as a detailed description. Set this
288 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
289 # only. Doxygen will then generate output that is more tailored for C. For
329 # Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice,
334 # as Fortran files (default is PHP), and .f files as C (default is Fortran),
335 # use: inc=Fortran f=C.
395 # If you use Microsoft's C++/CLI language, you should set this option to YES to
403 # will parse them like normal C++ but will assume all classes use public instead
469 # useful for C code in case the coding convention dictates that all compound
[all …]
/honee/qfunctions/
H A Dutils.h124 const CeedTransposeMode transpose_B, CeedScalar *C) { in MatMatN() argument
131 … CeedPragmaSIMD for (CeedInt k = 0; k < N; k++) C[i * N + j] += A[i * N + k] * B[k * N + j]; in MatMatN()
138 … CeedPragmaSIMD for (CeedInt k = 0; k < N; k++) C[i * N + j] += A[i * N + k] * B[j * N + k]; in MatMatN()
149 … CeedPragmaSIMD for (CeedInt k = 0; k < N; k++) C[i * N + j] += A[k * N + i] * B[k * N + j]; in MatMatN()
156 … CeedPragmaSIMD for (CeedInt k = 0; k < N; k++) C[i * N + j] += A[k * N + i] * B[j * N + k]; in MatMatN()
167 const CeedTransposeMode transpose_B, CeedScalar C[3][3]) { in MatMat3()
168 …atMatN((const CeedScalar *)A, (const CeedScalar *)B, 3, transpose_A, transpose_B, (CeedScalar *)C); in MatMat3()
173 const CeedTransposeMode transpose_B, CeedScalar C[2][2]) { in MatMat2()
174 …atMatN((const CeedScalar *)A, (const CeedScalar *)B, 2, transpose_A, transpose_B, (CeedScalar *)C); in MatMat2()
H A Deulervortex.h77 const CeedScalar C = vortex_strength * exp((1. - r * r) / 2.) / (2. * M_PI); in Exact_Euler() local
92 u[0] = mean_velocity[0] - C * y0; in Exact_Euler()
93 u[1] = mean_velocity[1] + C * x0; in Exact_Euler()
/honee/src/
H A Dsetupdm.c146 Mat C; in VizRefineDM() local
147 PetscCall(MatMatMult(interp_next, honee->interp_viz, MAT_INITIAL_MATRIX, PETSC_DECIDE, &C)); in VizRefineDM()
150 honee->interp_viz = C; in VizRefineDM()
/honee/tests/junit-xml/
H A D.gitignore3 # C extensions
/honee/doc/
H A Dtheory.md515 \bm{u}(\bm{x}, t) = \bm{\overline{u}}(\bm{x}) + \bm{C}(\bm{x}) \cdot \bm{v}'
525 …n\}_{n=1}^N$, the Cholesky decomposition of the Reynolds stress tensor $\bm{C}$ (such that $\bm{R}…
639 | $\bm{C}$ | C_ij | Yes | No |
H A Druntime_options.md365 The `pressure` variant is retained to facilitate comparison with other codes, such as PHASTA-C, but…
H A Dexamples.md93 $ make -C examples/meshes