Searched refs:Path (Results 1 – 9 of 9) sorted by relevance
| /libCEED/tests/ |
| H A D | junit.py | 43 def get_source_path(self, test: str) -> Path: 54 return (Path('examples') / 'rust-qfunctions' / rest).with_suffix('.c') 56 return (Path('examples') / 'petsc' / rest).with_suffix('.c') 58 return (Path('examples') / 'mfem' / rest).with_suffix('.cpp') 60 return (Path('examples') / 'nek' / 'bps' / rest).with_suffix('.usr') 62 return (Path('examples') / 'deal.II' / rest).with_suffix('.cc') 64 return (Path('examples') / 'fluids' / rest).with_suffix('.c') 66 return (Path('examples') / 'solids' / rest).with_suffix('.c') 69 return (Path('examples') / 'ceed' / test).with_suffix('.f90') 71 return (Path('examples') / 'ceed' / test).with_suffix('.c') [all …]
|
| H A D | junit_common.py | 10 from pathlib import Path 19 sys.path.insert(0, str(Path(__file__).parent / "junit-xml")) 88 def get_source_path(self, test: str) -> Path: 100 def get_run_path(self, test: str) -> Path: 112 def get_output_path(self, test: str, output_file: str) -> Path: 125 def test_failure_artifacts_path(self) -> Path: 127 return Path('build') / 'test_failure_artifacts' 375 def get_test_args(source_file: Path) -> List[TestSpec]: argument 404 def diff_csv(test_csv: Path, true_csv: Path, zero_tol: float, rel_tol: float, argument 481 def diff_cgns(test_cgns: Path, true_cgns: Path, cgns_tol: float) -> str: argument [all …]
|
| /libCEED/examples/fluids/ |
| H A D | pytorch_pkgconfig.py | 1 from pathlib import Path 7 build_dir = Path('./build') 24 variables['prefix'] = Path(C.library_paths()[0]).parent.as_posix() 36 torchCMakePath = Path(tutils.cmake_prefix_path) / 'Torch/TorchConfig.cmake' 55 torch_cuda_path = Path(lib_path) / 'libtorch_cuda.so'
|
| H A D | stdoutParsing.py | 19 from pathlib import Path 62 runlogDir = Path("./")
|
| H A D | README.md | 107 - Path to solution binary file from which to continue from 111 - Path to time stamp binary file (only for legacy checkpoints) 947 - Path to file with y node locations. If empty, will use mesh warping instead. 991 - Path to the STGInflow file 996 - Path to the STGRand file
|
| /libCEED/rust/libceed-sys/tests/ |
| H A D | version-numbers.rs | 1 use std::path::{Path, PathBuf}; 3 fn get_rel_path(rel: impl AsRef<Path>) -> PathBuf { in get_rel_path() 8 Path::new("rust/libceed-sys").join(rel) in get_rel_path()
|
| /libCEED/rust/libceed/tests/ |
| H A D | version-numbers.rs | 8 use std::path::{Path, PathBuf}; 20 fn get_rel_path(rel: impl AsRef<Path>) -> PathBuf { in get_rel_path() 25 Path::new("rust/libceed").join(rel) in get_rel_path()
|
| /libCEED/rust/libceed-sys/ |
| H A D | build.rs | 4 use std::path::{Path, PathBuf}; 52 if Path::new("c-src/config.mk").is_file() { in main()
|
| /libCEED/examples/solids/ |
| H A D | README.md | 36 - Path to mesh file in any format supported by PETSc.
|