/external/tensorflow/tensorflow/python/eager/ |
D | remote_benchmarks_test.py | 50 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)
|
D | benchmarks_test.py | 100 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 …]
|
D | context.py | 70 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)
|
D | core_test.py | 337 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/ |
D | rpc_service_method.h | 96 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/ |
D | rpc_service_method.h | 96 ASYNC, enumerator 110 (type == ApiType::ASYNC || type == ApiType::RAW)) { in SetServerApiType() 136 case ApiType::ASYNC: in TypeToString()
|
/external/libchrome/base/test/ |
D | scoped_task_environment_unittest.cc | 87 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()
|
D | scoped_task_environment.h | 90 ASYNC, enumerator 95 ExecutionMode execution_control_mode = ExecutionMode::ASYNC);
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | rpc_service_method.h | 69 ASYNC, enumerator 105 case AsyncType::ASYNC: in TypeToString()
|
/external/tensorflow/tensorflow/python/eager/benchmarks/ |
D | kpi_benchmark_test.py | 55 if execution_mode == context.ASYNC: 60 if execution_mode == context.ASYNC:
|
/external/python/cpython3/Doc/library/ |
D | token.rst | 81 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/ |
D | resnet50_test.py | 112 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/ |
D | gem_reset_stats.c | 158 #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/libchrome/base/trace_event/ |
D | auto_open_close_event.h | 28 ASYNC enumerator
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 18 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/tensorflow/tensorflow/python/keras/benchmarks/ |
D | eager_microbenchmarks_test.py | 35 if execution_mode == context.ASYNC: 40 if execution_mode == context.ASYNC:
|
D | model_components_benchmarks_test.py | 91 if execution_mode == context.ASYNC: 96 if execution_mode == context.ASYNC:
|
/external/python/cpython3/Grammar/ |
D | Tokens | 59 ASYNC
|
D | Grammar | 21 async_funcdef: ASYNC funcdef 115 async_stmt: ASYNC (funcdef | with_stmt | for_stmt) 189 comp_for: [ASYNC] sync_comp_for
|
D | python.gram | 75 | &('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/ |
D | token.py | 66 ASYNC = 57 variable
|
D | tokenize.py | 211 if toknum in (NAME, NUMBER, ASYNC, AWAIT): 506 yield (ASYNC if token == 'async' else AWAIT, 523 yield (ASYNC, stashed[1],
|
/external/python/cpython3/Include/ |
D | token.h | 69 #define ASYNC 56 macro
|
/external/python/cpython3/Lib/ |
D | token.py | 62 ASYNC = 56 variable
|
/external/OpenCSD/decoder/include/opencsd/ptm/ |
D | trc_pkt_proc_ptm.h | 125 ASYNC, //!< pattern confirmed async 0x00 x 5, 0x80 enumerator
|