Home
last modified time | relevance | path

Searched refs:ASYNC (Results 1 – 25 of 47) sorted by relevance

12

/external/tensorflow/tensorflow/python/eager/
Dremote_benchmarks_test.py50 if execution_mode == context.ASYNC:
55 if execution_mode == context.ASYNC:
87 def _run(self, func, num_iters=1000, execution_mode=context.ASYNC):
149 self._run(func, execution_mode=context.ASYNC, num_iters=100)
Dbenchmarks_test.py100 if execution_mode == context.ASYNC:
105 if execution_mode == context.ASYNC:
559 execution_mode=context.ASYNC)
609 execution_mode=context.ASYNC)
628 execution_mode=context.ASYNC)
659 execution_mode=context.ASYNC)
717 execution_mode=context.ASYNC)
744 execution_mode=context.ASYNC)
787 execution_mode=context.ASYNC)
930 self._benchmark_tf_reduce_logsumexp(execution_mode=context.ASYNC)
[all …]
Dcontext.py70 ASYNC = 1 variable
416 if execution_mode not in (None, SYNC, ASYNC):
421 self._default_is_async = execution_mode == ASYNC
521 if self._default_is_async == ASYNC:
895 return ASYNC if self.is_async() else SYNC
900 if mode not in (None, SYNC, ASYNC):
907 enable_async = (mode == ASYNC)
2160 executor_new = executor.new_executor(mode == ASYNC)
Dcore_test.py337 ctx.execution_mode = context.ASYNC
338 self.assertEqual(context.ASYNC, ctx.execution_mode)
388 ctx = context.Context(execution_mode=context.ASYNC)
547 with context.execution_mode(context.ASYNC):
631 with context.execution_mode(context.ASYNC):
1043 context.SYNC if i % 2 == 0 else context.ASYNC))
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/
Drpc_service_method.h96 ASYNC, enumerator
110 (type == ApiType::ASYNC || type == ApiType::RAW)) { in SetServerApiType()
136 case ApiType::ASYNC: in TypeToString()
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/
Drpc_service_method.h96 ASYNC, enumerator
110 (type == ApiType::ASYNC || type == ApiType::RAW)) { in SetServerApiType()
136 case ApiType::ASYNC: in TypeToString()
/external/libchrome/base/test/
Dscoped_task_environment_unittest.cc87 RunUntilIdleTest(GetParam(), ScopedTaskEnvironment::ExecutionMode::ASYNC); in TEST_P()
121 GetParam(), ScopedTaskEnvironment::ExecutionMode::ASYNC); in TEST_P()
137 GetParam(), ScopedTaskEnvironment::ExecutionMode::ASYNC); in TEST_P()
243 GetParam(), ScopedTaskEnvironment::ExecutionMode::ASYNC); in TEST_P()
254 ScopedTaskEnvironment::ExecutionMode::ASYNC); in TEST_F()
Dscoped_task_environment.h90 ASYNC, enumerator
95 ExecutionMode execution_control_mode = ExecutionMode::ASYNC);
/external/grpc-grpc/include/grpcpp/impl/codegen/
Drpc_service_method.h69 ASYNC, enumerator
105 case AsyncType::ASYNC: in TypeToString()
/external/tensorflow/tensorflow/python/eager/benchmarks/
Dkpi_benchmark_test.py55 if execution_mode == context.ASYNC:
60 if execution_mode == context.ASYNC:
/external/python/cpython3/Doc/library/
Dtoken.rst81 Added :data:`AWAIT` and :data:`ASYNC` tokens.
87 Removed :data:`AWAIT` and :data:`ASYNC` tokens. "async" and "await" are
92 Added :data:`AWAIT` and :data:`ASYNC` tokens back (they're needed
/external/tensorflow/tensorflow/python/eager/benchmarks/resnet50/
Dresnet50_test.py112 self._apply(defun=False, execution_mode=context.ASYNC)
118 self._apply(defun=True, execution_mode=context.ASYNC)
225 self._test_train(execution_mode=context.ASYNC)
337 execution_mode=context.ASYNC)
398 execution_mode=context.ASYNC)
/external/igt-gpu-tools/tests/i915/
Dgem_reset_stats.c158 #define ASYNC 2 macro
168 if ((flags & ASYNC) == 0) in inject_hang()
229 inject_hang(fd[i], 0, e, ASYNC); in test_rs()
296 inject_hang(fd[i], ctx[i][j], e, ASYNC); in test_rs_ctx()
351 inject_hang(fd_bad, 0, e, BAN | ASYNC); in test_ban()
410 inject_hang(fd, ctx_bad, e, BAN | ASYNC); in test_ban_ctx()
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt18 async_funcdef: ASYNC funcdef
69 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
147 comp_for: [ASYNC] 'for' exprlist 'in' testlist_safe [comp_iter]
/external/libchrome/base/trace_event/
Dauto_open_close_event.h28 ASYNC enumerator
/external/tensorflow/tensorflow/python/keras/benchmarks/
Deager_microbenchmarks_test.py35 if execution_mode == context.ASYNC:
40 if execution_mode == context.ASYNC:
Dmodel_components_benchmarks_test.py91 if execution_mode == context.ASYNC:
96 if execution_mode == context.ASYNC:
/external/python/cpython3/Grammar/
DTokens59 ASYNC
DGrammar21 async_funcdef: ASYNC funcdef
115 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
189 comp_for: [ASYNC] sync_comp_for
Dpython.gram75 | &('def' | '@' | ASYNC) function_def
78 | &('with' | ASYNC) with_stmt
79 | &('for' | ASYNC) for_stmt
171 …| ASYNC 'for' t=star_targets 'in' ~ ex=star_expressions ':' tc=[TYPE_COMMENT] b=block el=[else_blo…
180 | ASYNC 'with' '(' a=','.with_item+ ','? ')' ':' b=block {
182 | ASYNC 'with' a=','.with_item+ ':' tc=[TYPE_COMMENT] b=block {
214 …| ASYNC 'def' n=NAME '(' params=[params] ')' a=['->' z=expression { z }] ':' tc=[func_type_comment…
525 | ASYNC 'for' a=star_targets 'in' ~ b=disjunction c=('if' z=disjunction { z })* {
694 | ASYNC? 'for' a=star_expressions {
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtoken.py66 ASYNC = 57 variable
Dtokenize.py211 if toknum in (NAME, NUMBER, ASYNC, AWAIT):
506 yield (ASYNC if token == 'async' else AWAIT,
523 yield (ASYNC, stashed[1],
/external/python/cpython3/Include/
Dtoken.h69 #define ASYNC 56 macro
/external/python/cpython3/Lib/
Dtoken.py62 ASYNC = 56 variable
/external/OpenCSD/decoder/include/opencsd/ptm/
Dtrc_pkt_proc_ptm.h125 ASYNC, //!< pattern confirmed async 0x00 x 5, 0x80 enumerator

12