[XLA:Python] Enable asynchronous mode on GPU.

PiperOrigin-RevId: 249245334
This commit is contained in:
Peter Hawkins 2019-05-21 07:27:13 -07:00 committed by TensorFlower Gardener
parent 85429cebb0
commit d52b6ddef4

View File

@ -143,7 +143,7 @@ def _gpu_backend_factory():
config.memory_fraction = float(memory_fraction)
client = _xla.LocalClient.Get(
platform='gpu', xla_platform_id='CUDA', asynchronous=False,
platform='gpu', xla_platform_id='CUDA', asynchronous=True,
allocator_config=config)
return LocalBackend(platform='gpu', client=client)