Home
last modified time | relevance | path

Searched refs:run_result (Results 1 – 8 of 8) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl4cPipelineStatisticsQueryTests.cpp1192 …const _test_execution_result& run_result, unsigned int n_expected_values, const glw::GLuint64* exp… in verifyResultValues() argument
1237 (glw::GLuint64)run_result.result_int == expected_value) || in verifyResultValues()
1239 (glw::GLuint64)run_result.result_int >= expected_value)) in verifyResultValues()
1244 if (run_result.int64_written && ((verification_type == VERIFICATION_TYPE_EXACT_MATCH && in verifyResultValues()
1245 run_result.result_int64 == (glw::GLint64)expected_value) || in verifyResultValues()
1247 run_result.result_int64 >= (glw::GLint64)expected_value))) in verifyResultValues()
1253 (glw::GLuint64)run_result.result_uint == expected_value) || in verifyResultValues()
1255 (glw::GLuint64)run_result.result_uint >= expected_value)) in verifyResultValues()
1260 if (run_result.uint64_written && in verifyResultValues()
1261 …((verification_type == VERIFICATION_TYPE_EXACT_MATCH && run_result.result_uint64 == expected_value… in verifyResultValues()
[all …]
Dgl4cPipelineStatisticsQueryTests.hpp285 …static bool verifyResultValues(const _test_execution_result& run_result, unsigned int n_expected_v…
/external/tensorflow/tensorflow/python/kernel_tests/distributions/
Dcategorical_test.py301 run_result = self.evaluate(to_run)
303 self.assertAllEqual(run_result["cat_prob"].shape,
304 run_result["norm_prob"].shape)
305 self.assertAllEqual(run_result["cat_log_prob"].shape,
306 run_result["norm_log_prob"].shape)
307 self.assertAllEqual(run_result["cat_cdf"].shape,
308 run_result["norm_cdf"].shape)
309 self.assertAllEqual(run_result["cat_log_cdf"].shape,
310 run_result["norm_log_cdf"].shape)
/external/tensorflow/tensorflow/compiler/jit/kernels/
Dxla_ops.cc368 auto run_result = executable->Run(launch_context.arguments(), run_options); in Compute() local
369 OP_REQUIRES(ctx, run_result.ok(), run_result.status()); in Compute()
375 ctx, kernel, run_result.ConsumeValueOrDie(), in Compute()
542 auto run_result = in Compute() local
544 OP_REQUIRES(ctx, run_result.ok(), run_result.status()); in Compute()
552 ctx, closure.compilation_result(), run_result.ConsumeValueOrDie(), in Compute()
/external/tensorflow/tensorflow/compiler/xrt/kernels/
Dxrt_execute_op.cc217 auto run_result = executable->Run(input_pointers, run_options); in DoWork() local
218 if (!run_result.ok()) { in DoWork()
219 return run_result.status(); in DoWork()
225 auto scoped_buffer = run_result.ConsumeValueOrDie(); in DoWork()
/external/tensorflow/tensorflow/compiler/jit/
Dxla_compile_on_demand_op.cc81 xla::StatusOr<xla::ScopedShapedBuffer> run_result = in Run() local
83 TF_RETURN_IF_ERROR(run_result.status()); in Run()
86 ctx, result, run_result.ConsumeValueOrDie(), in Run()
/external/autotest/client/site_tests/graphics_dEQP/
Dgraphics_dEQP.py363 run_result = {}
366 run_result = utils.run(
402 if run_result:
403 output_msgs['stdout'] = run_result.stdout.splitlines()
404 output_msgs['stderr'] = run_result.stderr.splitlines()
/external/e2fsprogs/e2fsck/
Dunix.c1378 int flags, run_result, was_changed; in main() local
1860 run_result = e2fsck_run(ctx); in main()
1892 if (run_result & E2F_FLAG_ABORT) { in main()
1894 } else if (run_result & E2F_FLAG_CANCEL) { in main()
1920 if (run_result == E2F_FLAG_RESTART) { in main()