def test_runs_tf_with_lambda_executor(self):
     executor_test_utils.test_runs_tf(
         self, _make_test_executor(1, use_lambda_executor=True))
Esempio n. 2
0
 def test_runs_tf_streaming_rpc(self):
   with test_context(rpc_mode='STREAMING') as context:
     executor_test_utils.test_runs_tf(self, context.executor)
 def test_runs_tf(self):
     executor_test_utils.test_runs_tf(self, _make_test_executor(1))
 def test_runs_tf_unspecified_clients(self):
     executor_test_utils.test_runs_tf(
         self,
         executor_stacks.local_executor_factory().create_executor({}))
Esempio n. 5
0
 def test_runs_tf(self):
   with test_context() as context:
     executor_test_utils.test_runs_tf(self, context.executor)
 def test_runs_tf(self):
     executor_test_utils.test_runs_tf(
         self,
         reference_resolving_executor.ReferenceResolvingExecutor(
             eager_tf_executor.EagerTFExecutor()))
 def test_runs_tf(self):
     executor_test_utils.test_runs_tf(
         self,
         executor_stacks.local_executor_factory(1).create_executor({}))
Esempio n. 8
0
 def test_runs_tf(self):
   ex, _ = _make_executor_and_tracer_for_test(support_lambdas=True)
   executor_test_utils.test_runs_tf(self, ex)
Esempio n. 9
0
 def test_runs_tf(self):
   executor_test_utils.test_runs_tf(
       self, lambda_executor.LambdaExecutor(eager_executor.EagerExecutor()))
Esempio n. 10
0
 def test_runs_tf(self):
     executor_test_utils.test_runs_tf(self, eager_executor.EagerExecutor())
Esempio n. 11
0
 def test_runs_tf_with_reference_resolving_executor(self):
     executor_test_utils.test_runs_tf(
         self, _make_test_executor(1,
                                   use_reference_resolving_executor=True))
Esempio n. 12
0
 def test_sizing_runs_tf(self):
     executor_test_utils.test_runs_tf(
         self, executor_stacks.create_sizing_executor(1))
Esempio n. 13
0
 def test_runs_tf_unspecified_clients(self):
     executor_test_utils.test_runs_tf(
         self, executor_stacks.create_local_executor())
Esempio n. 14
0
 def test_runs_tf(self):
     executor_test_utils.test_runs_tf(
         self, executor_stacks.create_local_executor(1))