| /honee/tests/junit-xml/junit_xml/ |
| H A D | __init__.py | 404 def add_error_info(self, message=None, output=None, error_type=None): argument 408 error["output"] = output 411 if message or output: 418 if output: 419 self.errors[0]["output"] = output 423 def add_failure_info(self, message=None, output=None, failure_type=None): argument 427 failure["output"] = output 430 if message or output: 437 if output: 438 self.failures[0]["output"] = output [all …]
|
| /honee/tests/ |
| H A D | smartsim_regression_framework.py | 186 output = (True, NoError(), exe_path + ' ' + ' '.join(arguments)) 188 output = (False, e, exe_path + ' ' + ' '.join(arguments)) 194 return output 201 output = "" if isinstance(exception, NoError) else ''.join( 208 stdout=output, 209 stderr=output, 216 test_case.add_failure_info("exception", output)
|
| H A D | junit_common.py | 434 output = comment_func(test_line, true_line) 435 if output: 436 return output 683 test_case.add_failure_info('stdout', output=''.join(diff)) 685 test_case.add_failure_info('stdout', output=test_case.stdout) 694 test_case.add_failure_info('csv', output=f'{ref_csv} not found') 696 test_case.add_failure_info('csv', output=f'{out_file} not found') 710 test_case.add_failure_info(f'csv: {save_path}', output=diff) 721 test_case.add_failure_info('cgns', output=f'{ref_cgn} not found') 723 test_case.add_failure_info('cgns', output=f'{out_file} not found') [all …]
|
| /honee/ |
| H A D | common.mk | 16 output = $(if $(TERM:dumb=),$(call color_out,$1,$2),$(call emacs_out,$1,$2)) 19 quiet = $(if $(V),$($(1)),$(call output,$1,$@);$($(1)))
|
| H A D | Doxyfile | 62 # the logo to the output directory. 74 # sub-directories (in 2 levels) under the output directory of each output format 105 # information to generate all constant output in the proper language. 279 # to insert newlines (in the resulting output). You can put ^^ in the value part 289 # only. Doxygen will then generate output that is more tailored for C. For 297 # Python sources only. Doxygen will then generate output that is more tailored 305 # sources. Doxygen will then generate output that is tailored for Fortran. 311 # sources. Doxygen will then generate output that is tailored for VHDL. 317 # sources only. Doxygen will then generate output that is more tailored for that 350 # The output of markdown processing is further processed by doxygen, so you can [all …]
|
| H A D | .gitignore | 83 # latex output files
|
| H A D | CHANGELOG.md | 28 - Add `-ts_eval_solutions_view` to output solutions gathered via `-ts_eval_times`
|
| /honee/qfunctions/ |
| H A D | sgs_dd_utils.h | 39 CEED_QFUNCTION_HELPER void DenormalizeDDOutputs(CeedScalar output[6], const CeedScalar new_bounds[6… in DenormalizeDDOutputs() 43 output[i] = bounds_ratio * (output[i] - old_bounds[i][1]) + new_bounds[i][1]; in DenormalizeDDOutputs()
|
| H A D | utils.h | 44 CeedScalar output = 0; in DotN() local 45 CeedPragmaSIMD for (CeedInt i = 0; i < N; i++) output += u[i] * v[i]; in DotN() 46 return output; in DotN()
|
| /honee/examples/ |
| H A D | conv_test.sh | 46 count=$(diff conv_test_result.csv tests-output/fluids-navierstokes-conv-euler.csv | grep "^>" | wc … 49 diff -q conv_test_result.csv tests-output/fluids-navierstokes-conv-euler.csv
|
| /honee/src/ |
| H A D | petsc_ops.c | 172 …peratorCreateLocalVecs(CeedOperator op, VecType vec_type, MPI_Comm comm, Vec *input, Vec *output) { in CeedOperatorCreateLocalVecs() argument 187 if (output) { in CeedOperatorCreateLocalVecs() 188 PetscCall(VecCreate(comm, output)); in CeedOperatorCreateLocalVecs() 189 PetscCall(VecSetType(*output, vec_type)); in CeedOperatorCreateLocalVecs() 190 PetscCall(VecSetSizes(*output, output_size, output_size)); in CeedOperatorCreateLocalVecs()
|
| /honee/doc/ |
| H A D | runtime_options.md | 93 - PETSc output format, such as `cgns:output-%d.cgns` (requires PETSc `--download-cgns`) 97 - Number of time steps between visualization output frames. 105 …- Number of steps between writing binary checkpoints. `0` has no output, `-1` outputs final state … 121 - Whether to add step numbers to output binary files 133 - PETSc output format for `-ts_eval_times` solutions to be written to 150 …fy whether solution (`solver`) or turbulent statistics (`turb_spanstats`) output should be verified
|
| H A D | auxiliary.md | 96 …- Sets the `PetscViewer` for the statistics file writing, such as `cgns:output-%d.cgns` (requires … 115 …h the mathematical definition on the left and the label (present in CGNS output files) is on the r…
|
| H A D | theory.md | 452 In fused mode, the input processing, model inference, and output handling were all done in a single… 456 …has separate function calls/CeedOperators for input creation, model inference, and output handling.
|
| /honee/tests/junit-xml/ |
| H A D | README.rst | 52 Produces the following output 75 with open('output.xml', 'w') as f:
|
| /honee/include/ |
| H A D | petsc_ops.h | 25 …OperatorCreateLocalVecs(CeedOperator op, VecType vec_type, MPI_Comm comm, Vec *input, Vec *output);
|