Home
last modified time | relevance | path

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

/external/deqp/external/openglcts/modules/gl/
Dgl4cPipelineStatisticsQueryTests.cpp1206 …const _test_execution_result& run_result, unsigned int n_expected_values, const glw::GLuint64* exp… in verifyResultValues() argument
1251 (glw::GLuint64)run_result.result_int == expected_value) || in verifyResultValues()
1253 (glw::GLuint64)run_result.result_int >= expected_value)) in verifyResultValues()
1258 if (run_result.int64_written && ((verification_type == VERIFICATION_TYPE_EXACT_MATCH && in verifyResultValues()
1259 run_result.result_int64 == (glw::GLint64)expected_value) || in verifyResultValues()
1261 run_result.result_int64 >= (glw::GLint64)expected_value))) in verifyResultValues()
1267 (glw::GLuint64)run_result.result_uint == expected_value) || in verifyResultValues()
1269 (glw::GLuint64)run_result.result_uint >= expected_value)) in verifyResultValues()
1274 if (run_result.uint64_written && in verifyResultValues()
1275 …((verification_type == VERIFICATION_TYPE_EXACT_MATCH && run_result.result_uint64 == expected_value… in verifyResultValues()
[all …]
Dgl4cPipelineStatisticsQueryTests.hpp286 …static bool verifyResultValues(const _test_execution_result& run_result, unsigned int n_expected_v…
/external/tensorflow/tensorflow/python/kernel_tests/distributions/
Dcategorical_test.py296 run_result = self.evaluate(to_run)
298 self.assertAllEqual(run_result["cat_prob"].shape,
299 run_result["norm_prob"].shape)
300 self.assertAllEqual(run_result["cat_log_prob"].shape,
301 run_result["norm_log_prob"].shape)
302 self.assertAllEqual(run_result["cat_cdf"].shape,
303 run_result["norm_cdf"].shape)
304 self.assertAllEqual(run_result["cat_log_cdf"].shape,
305 run_result["norm_log_cdf"].shape)
/external/pdfium/testing/tools/
Dtest_runner.py575 run_result = subprocess.run(
581 if run_result.returncode != 0:
584 run_result.args, run_result.returncode)
586 run_result = timeout_expired
588 test_result.reason = 'Command {} timed out'.format(run_result.cmd)
592 if run_result.stdout:
593 original_stdout.write(run_result.stdout)
598 test_result.log = run_result.stdout
600 test_result.log = run_result.stderr
/external/tensorflow/tensorflow/compiler/jit/
Dxla_compile_on_demand_op.cc95 StatusOr<xla::ExecutionOutput> run_result = in Run() local
97 TF_RETURN_IF_ERROR(run_result.status()); in Run()
98 xla::ExecutionOutput execution_output = std::move(run_result).value(); in Run()
/external/autotest/client/site_tests/graphics_parallel_dEQP/
Dgraphics_parallel_dEQP.py228 run_result = {}
231 run_result = utils.run(
285 if run_result.exit_status != 0:
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_grappler_test.py80 run_result = sess.run(y, options=run_options, run_metadata=run_metadata)
81 self.assertAllClose(run_result, [[3, 12], [27, 48]])
/external/tensorflow/tensorflow/compiler/xrt/kernels/
Dxrt_execute_op.cc268 se::Stream* stream, xla::ExecutionOutput run_result, xla::Backend* backend, in CreateOutputTuple() argument
271 xla::ScopedShapedBuffer* shaped_buffer = run_result.MutableResult(); in CreateOutputTuple()
293 (void)run_result.ConsumeResult().release(); in CreateOutputTuple()
360 xla::ExecutionOutput run_result, in RunExecutable()
365 CreateOutputTuple(stream, std::move(run_result), device_ref->backend(), in RunExecutable()
/external/e2fsprogs/e2fsck/
Dunix.c1405 int flags, run_result, was_changed; in main() local
1931 run_result = e2fsck_run(ctx); in main()
1959 if (run_result & E2F_FLAG_ABORT) { in main()
1961 } else if (run_result & E2F_FLAG_CANCEL) { in main()
1987 if (run_result == E2F_FLAG_RESTART) { in main()
/external/tensorflow/tensorflow/python/distribute/coordinator/
Dcluster_coordinator_test.py1147 run_result = self.strategy.run(replica_fn, args=(input_tensor,))
1148 reduced_result = self.strategy.reduce('SUM', run_result, axis=None)
1186 run_result = self.strategy.run(replica_fn, args=(input_tensor,))
1187 reduced_result = self.strategy.reduce('SUM', run_result, axis=None)
/external/cronet/base/test/launcher/
Dtest_launcher.cc1148 bool run_result = true; in Run() local
1158 run_result = run_result && retry_result; in Run()
1176 return run_result; in Run()
/external/crosvm/devices/src/virtio/vhost/user/
Dproxy.rs1612 let run_result = worker.run( in try_starting_worker() localVariable
1632 match run_result { in try_starting_worker()
/external/tensorflow/tensorflow/python/distribute/
Dmirrored_strategy_test.py125 run_result = distribution.run(replica_fn, args=(input_tensor,))
126 reduced_result = distribution.reduce("SUM", run_result, axis=None)