Home
last modified time | relevance | path

Searched refs:output (Results 1 – 16 of 16) sorted by relevance

/honee/tests/junit-xml/junit_xml/
H A D__init__.py404 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 Dsmartsim_regression_framework.py186 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 Djunit_common.py434 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 Dcommon.mk16 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 DDoxyfile62 # 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.gitignore83 # latex output files
H A DCHANGELOG.md28 - Add `-ts_eval_solutions_view` to output solutions gathered via `-ts_eval_times`
/honee/qfunctions/
H A Dsgs_dd_utils.h39 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 Dutils.h44 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 Dconv_test.sh46 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 Dpetsc_ops.c172 …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 Druntime_options.md93 - 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 Dauxiliary.md96 …- 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 Dtheory.md452 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 DREADME.rst52 Produces the following output
75 with open('output.xml', 'w') as f:
/honee/include/
H A Dpetsc_ops.h25 …OperatorCreateLocalVecs(CeedOperator op, VecType vec_type, MPI_Comm comm, Vec *input, Vec *output);