| /libCEED/rust/libceed-sys/ |
| H A D | build.rs | 19 .arg(format!("prefix={}", out_dir.to_string_lossy())) in main() 20 .arg(format!( in main() 24 .arg(format!( in main()
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | Misc.jl | 19 #! format: off 25 #! format: on 89 #! format: off 92 #! format: on 98 #! format: off 102 #! format: on
|
| H A D | Cuda.jl | 4 #! format: off 16 #! format: on
|
| H A D | Basis.jl | 94 # Convert from Julia matrices (column-major) to row-major format 151 # Convert from Julia matrices and tensors (column-major) to row-major format 209 # Convert from Julia matrices and tensors (column-major) to row-major format 268 # Convert from Julia matrices and tensors (column-major) to row-major format
|
| /libCEED/interface/ |
| H A D | ceed.c | 253 void CeedDebugImpl256(const unsigned char color, const char *format, ...) { in CeedDebugImpl256() argument 255 va_start(args, format); in CeedDebugImpl256() 258 vfprintf(stdout, format, args); in CeedDebugImpl256() 1696 const char *CeedErrorFormat(Ceed ceed, const char *format, va_list *args) { in CeedErrorFormat() argument 1697 if (ceed->parent) return CeedErrorFormat(ceed->parent, format, args); in CeedErrorFormat() 1699 vsnprintf(ceed->err_msg, CEED_MAX_RESOURCE_LEN, format, *args); // NOLINT in CeedErrorFormat() 1711 …eed ceed, const char *filename, int lineno, const char *func, int ecode, const char *format, ...) { in CeedErrorImpl() argument 1715 va_start(args, format); in CeedErrorImpl() 1717 ret_val = ceed->Error(ceed, filename, lineno, func, ecode, format, &args); in CeedErrorImpl() 1723 ret_val = CeedErrorReturn(ceed, filename, lineno, func, ecode, format, &args); in CeedErrorImpl() [all …]
|
| /libCEED/ |
| H A D | Makefile | 931 CLANG_FORMAT ?= clang-format 936 format.ch := $(filter-out include/ceedf.h $(wildcard tests/t*-f.h) $(wildcard examples/ceed/ex*-f.h… 937 format.py := $(filter-out tests/junit-xml/junit_xml/__init__.py, $(shell git ls-files '*.py')) 938 format.ot := $(filter-out doc/sphinx/source/CODE_OF_CONDUCT.md doc/sphinx/source/CONTRIBUTING.md, $… 940 format-c : 941 $(CLANG_FORMAT) $(CLANG_FORMAT_OPTS) $(format.ch) 943 format-py : 944 $(AUTOPEP8) $(AUTOPEP8_OPTS) $(format.py) 946 format-ot: 947 @$(SED) -r 's/\s+$$//' -i $(format.ot) [all …]
|
| H A D | setup.py | 53 '-j{}'.format(nproc),
|
| /libCEED/rust/libceed-sys/c-src/ |
| H A D | Makefile | 931 CLANG_FORMAT ?= clang-format 936 format.ch := $(filter-out include/ceedf.h $(wildcard tests/t*-f.h) $(wildcard examples/ceed/ex*-f.h… 937 format.py := $(filter-out tests/junit-xml/junit_xml/__init__.py, $(shell git ls-files '*.py')) 938 format.ot := $(filter-out doc/sphinx/source/CODE_OF_CONDUCT.md doc/sphinx/source/CONTRIBUTING.md, $… 940 format-c : 941 $(CLANG_FORMAT) $(CLANG_FORMAT_OPTS) $(format.ch) 943 format-py : 944 $(AUTOPEP8) $(AUTOPEP8_OPTS) $(format.py) 946 format-ot: 947 @$(SED) -r 's/\s+$$//' -i $(format.ot) [all …]
|
| /libCEED/julia/LibCEED.jl/docs/ |
| H A D | make.jl | 4 format=Documenter.HTML(prettyurls=false),
|
| /libCEED/examples/deal.II/ |
| H A D | .clang-format | 2 # The clang-format (Clang 11) style file used by deal.II. 131 # surrounded by #ifdef checks (which will not be merged by clang-format) so they
|
| /libCEED/examples/rust/ex2-surface/src/ |
| H A D | main.rs | 219 let name = format!("Poisson{}DBuild", dim); in example_2() 300 let name = format!("Poisson{}DApply", dim); in example_2() 350 message: format!( in example_2()
|
| /libCEED/examples/rust/ex2-surface-vector/src/ |
| H A D | main.rs | 222 let name = format!("Poisson{}DBuild", dim); in example_2_vector() 317 let name = format!("Vector3Poisson{}DApply", dim); in example_2_vector() 381 message: format!( in example_2_vector()
|
| /libCEED/examples/rust/ex1-volume/src/ |
| H A D | main.rs | 182 let name = format!("Mass{}DBuild", dim); in example_1() 272 message: format!( in example_1()
|
| /libCEED/examples/rust/ex1-volume-vector/src/ |
| H A D | main.rs | 186 let name = format!("Mass{}DBuild", dim); in example_1_vector() 290 message: format!( in example_1_vector()
|
| /libCEED/rust/libceed/src/ |
| H A D | vector.rs | 228 let format = CString::new("%12.8f").expect("CString::new failed"); in fmt() localVariable 229 let format_c: *const c_char = format.into_raw(); in fmt()
|
| /libCEED/tests/ |
| H A D | junit_common.py | 564 … output_str += 'ERROR: {}\n'.format((test_case.errors[0]['message'] or 'NO MESSAGE').strip()) 565 … output_str += 'Output: \n{}\n'.format((test_case.errors[0]['output'] or 'NO MESSAGE').strip()) 568 output_str += 'FAIL: {}\n'.format((failure['message'] or 'NO MESSAGE').strip()) 569 … output_str += 'Output: \n{}\n'.format((failure['output'] or 'NO MESSAGE').strip())
|
| /libCEED/include/ceed/ |
| H A D | ceed.h | 126 …Ceed ceed, const char *filename, int lineno, const char *func, int ecode, const char *format, ...); 143 …st char *filename, int line_no, const char *func, int err_code, const char *format, va_list *args); 144 …st char *filename, int line_no, const char *func, int err_code, const char *format, va_list *args); 145 …st char *filename, int line_no, const char *func, int err_code, const char *format, va_list *args); 146 …st char *filename, int line_no, const char *func, int err_code, const char *format, va_list *args);
|
| /libCEED/examples/fluids/src/ |
| H A D | setupts.c | 247 PetscViewerFormat format = user->app_ctx->wall_forces.viewer_format; in TSMonitor_WallForce() local 261 if (format == PETSC_VIEWER_ASCII_CSV && !user->app_ctx->wall_forces.header_written) { in TSMonitor_WallForce() 267 if (format == PETSC_VIEWER_ASCII_CSV) { in TSMonitor_WallForce()
|
| H A D | mat-ceed.c | 254 PetscViewerFormat format; in MatView_Ceed() local 263 PetscCall(PetscViewerGetFormat(viewer, &format)); in MatView_Ceed() 265 if (size == 1 && format == PETSC_VIEWER_LOAD_BALANCE) PetscFunctionReturn(PETSC_SUCCESS); in MatView_Ceed() 272 PetscBool is_detailed = format == PETSC_VIEWER_ASCII_INFO_DETAIL; in MatView_Ceed()
|
| /libCEED/benchmarks/ |
| H A D | postprocess_plot.py | 183 savefig(pdf_file, format='pdf', bbox_inches='tight')
|
| /libCEED/examples/solids/ |
| H A D | README.md | 36 - Path to mesh file in any format supported by PETSc. 52 This solver can use any mesh format that PETSc's `DMPlex` can read (Exodus, Gmsh, Med, etc.).
|
| /libCEED/examples/nek/bps/ |
| H A D | bps.usr | 658 1 format(i9,1p4e12.4,' diag prec') 982 1 format(a12,i7,i3,i7,i10,i14,i10,i4,1p4e13.5) 983 3 format(i3,i9,e12.4,1x,a8,i9) 1304 1 format(a12,i7,i3,i7,i10,i14,i10,i4,1p4e13.5) 1305 3 format(i3,i9,e12.4,1x,a8,i9) 1402 1 format(i2,i9,i5,i4,1p1e12.4,' cggos') 1411 2 format(i5,1p3e12.4,2x,a5) 1430 3000 format(i12,1x,'cggo scalar:',i6,1p5e13.4) 1431 3001 format(2i6,' Unconverged cggo scalar: rbnorm =',1p2e13.6)
|
| /libCEED/julia/LibCEED.jl/.style/ |
| H A D | ceed_style.jl | 162 format(
|
| /libCEED/examples/rust/ex3-volume/src/ |
| H A D | main.rs | 353 message: format!( in example_3()
|
| /libCEED/doc/sphinx/source/ |
| H A D | intro.md | 18 The *assembled* representation uses a (block) CSR format.
|