HomeSort by relevance Sort by last modified time
    Searched defs:Run (Results 276 - 300 of 746) sorted by null

<<11121314151617181920>>

  /external/libchrome/base/task/
cancelable_task_tracker_unittest.cc 47 // Returns a closure that fails if run.
53 // destroyed without Run() having been called. This class may be used
54 // from multiple threads as long as Run() is called at most once
67 void Run() { called_ = true; }
74 // Returns a closure that fails on destruction if it hasn't been run.
76 return Bind(&RunChecker::Run, Owned(new RunChecker(location)));
83 // should run and the "is canceled" callback should return false.
103 EXPECT_FALSE(is_canceled.Run());
107 // task runner. The task should not run.
125 // run
    [all...]
  /external/libchrome/base/timer/
timer.cc 40 void Run() {
174 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)),
179 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)));
220 // Make a local copy of the task to run. The Stop method will reset the
229 task.Run();
  /external/libcxx/utils/google-benchmark/src/
statistics.cc 75 std::vector<BenchmarkReporter::Run> ComputeStats(
76 const std::vector<BenchmarkReporter::Run>& reports) {
77 typedef BenchmarkReporter::Run Run;
78 std::vector<Run> results;
82 [](Run const& run) { return run.error_occurred; });
85 // We don't report aggregated data if there was a single run.
100 // All repetitions should be run with the same number of iterations so w
    [all...]
  /external/libcxx/utils/google-benchmark/test/
skip_with_error_test.cc 17 virtual void ReportRuns(const std::vector<Run>& report) {
25 mutable std::vector<Run> all_runs_;
33 typedef benchmark::BenchmarkReporter::Run Run;
35 void CheckRun(Run const& run) const {
36 CHECK(name == run.benchmark_name) << "expected " << name << " got "
37 << run.benchmark_name;
38 CHECK(error_occurred == run.error_occurred);
39 CHECK(error_message == run.error_message)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_internal.h 197 if (!ValidateCaller<T>::Run(elements[i], validation_context,
210 static bool Run(const Pointer<U>& data,
222 static bool Run(const Pointer<U>& data,
  /external/libmojo/mojo/public/cpp/bindings/tests/
bindings_perftest.cc 39 callback.Run();
46 void Run(unsigned int iterations);
63 void PingPongTest::Run(unsigned int iterations) {
70 run_loop.Run();
76 quit_closure_.Run();
110 test.Run(kIterations);
125 test.Run(kIterations);
  /external/llvm/utils/lit/lit/
run.py 76 def run(self): member in class:Tester
114 def __init__(self, run, display, num_jobs):
115 self.run = run
144 test = self.run.tests[index]
149 def run_one_tester(run, provider, display):
150 tester = Tester(run, provider, display)
151 tester.run()
155 class Run(object):
157 This class represents a concrete, configured testing run
    [all...]
  /external/perfetto/src/base/
unix_task_runner.cc 69 void UnixTaskRunner::Run() {
  /external/python/cpython3/PCbuild/
build.bat 2 goto Run
48 :Run
  /external/tensorflow/tensorflow/cc/framework/
while_gradients_test.cc 55 void Run(const std::vector<Input::Initializer>& input_values,
57 Run<T>(ClientSession(scope_), input_values, expected_grad_values);
61 void Run(const ClientSession& session,
74 TF_ASSERT_OK(session.Run(run_options, feeds, grad_outputs_, run_outputs,
109 Run<int>({1}, {1});
110 Run<int>({11}, {1});
152 Run<int>({0, 1, 2}, {1, 5, 1});
154 Run<int>({1, 1, 0}, {1, 5, 1});
155 Run<int>({0, 0, 0}, {1, 6, 1});
186 Run<double>({1.0, 1.0}, {-2.0, 2.0})
    [all...]
  /external/tensorflow/tensorflow/cc/training/
queue_runner.cc 55 "Enqueue ops to run cannot exceed kint32max");
59 return Status(error::INVALID_ARGUMENT, "Empty enqueue ops to run.");
83 // Cannot run Stop() here because the session might already be closed or
100 std::bind(&QueueRunner::Run, this, sess, enqueue_op));
162 void QueueRunner::Run(Session* sess, const string& enqueue_op) {
187 // will be run anway in this case.
231 s = sess->Run(run_options_, {}, {}, {op}, nullptr, &metadata);
235 s = sess->Run({}, {}, {op}, nullptr);
  /external/tensorflow/tensorflow/compiler/xla/client/
local_client.cc 104 // device it will run on.
117 "executable is built for device %s of type \"%s\"; cannot run it on "
139 StatusOr<std::unique_ptr<ScopedShapedBuffer>> LocalExecutable::Run(
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
conv_canonicalization.cc 31 StatusOr<bool> ConvCanonicalization::Run(HloModule* module) {
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_element_type_converter.cc 114 StatusOr<bool> HloElementTypeConverter::Run(HloModule* module) {
116 3, "HloElementTypeConverter::Run(), before:\n" + module->ToString());
203 2, "HloElementTypeConverter::Run(), after:\n" + module->ToString());
reshape_mover.cc 324 StatusOr<bool> ReshapeMover::Run(HloModule* module) {
transpose_folding.cc 176 StatusOr<bool> TransposeFolding::Run(HloModule* module) {
tuple_simplifier_test.cc 39 void Run(HloModule* module, bool change_expected) {
41 auto changed_status = simplifier.Run(module);
65 Run(module.get(), /*change_expected=*/false);
78 Run(module.get(), /*change_expected=*/false);
100 Run(module.get(), /*change_expected=*/true);
128 Run(module.get(), /*change_expected=*/true);
159 Run(module.get(), /*change_expected=*/true);
184 Run(module.get(), /*change_expected=*/true);
209 Run(module.get(), /*change_expected=*/false);
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
convert_reorder_axes.cc 89 bool ConvertReorderAxes::Run(Model* model, std::size_t op_index) {
dequantize.cc 188 bool Dequantize::Run(Model* model, std::size_t op_index) {
identify_lstm.cc 206 bool IdentifyLstmCell::Run(Model* model, std::size_t op_index) {
resolve_batch_normalization.cc 28 bool ResolveBatchNormalization::Run(Model* model, std::size_t op_index) {
resolve_constant_binary.cc 191 bool ResolveConstantBinaryOperator::Run(Model* model, std::size_t op_index) {
resolve_constant_concatenation.cc 133 bool ResolveConstantConcatenation::Run(Model* model, std::size_t op_index) {
unroll_batch_matmul.cc 39 bool UnrollBatchMatMul::Run(Model* model, std::size_t op_index) {
  /external/tensorflow/tensorflow/core/common_runtime/
kernel_benchmark_testlib.cc 94 TF_CHECK_OK(init_exec->Run(args));
110 void Benchmark::Run(int iters) { RunWithArgs({}, {}, iters); }
159 TF_CHECK_OK(exec_->Run(args));
176 TF_CHECK_OK(exec_->Run(args));

Completed in 550 milliseconds

<<11121314151617181920>>