Last active
August 17, 2019 01:17
-
-
Save rish-16/5214b342f1df63f42e5a34bcbafbf588 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Detect hardware | |
| try: | |
| tpu = tf.distribute.cluster_resolver.TPUClusterResolver() # TPU detection | |
| except ValueError: # If TPU not found, resolve to GPU instead | |
| tpu = None | |
| gpus = tf.config.experimental.list_logical_devices("GPU") | |
| # Select appropriate distribution strategy | |
| if tpu: | |
| tf.tpu.experimental.initialize_tpu_system(tpu) | |
| strategy = tf.distribute.experimental.TPUStrategy(tpu, steps_per_run=128) | |
| print('Running on TPU ', tpu.cluster_spec().as_dict()['worker']) | |
| else: | |
| strategy = tf.distribute.get_strategy() # Default strategy that works on CPU and single GPU | |
| print('Running on CPU') | |
| print("Number of accelerators: ", strategy.num_replicas_in_sync) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment