Friday, October 24, 2025
HomeLanguagesPython – tensorflow.DeviceSpec.device_index Attribute

Python – tensorflow.DeviceSpec.device_index Attribute

TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. 

device_index is used to get the device index of DeviceSpec.

Syntax: tensorflow.DeviceSpec.device_index

Returns: It returns the device index.

Example 1:

Python3




# Importing the library
import tensorflow as tf
  
# Initializing Device Specification
device_spec = tf.DeviceSpec(job ="gfg", device_type ="CPU", device_index = 0)
  
# Printing the DeviceSpec object
print('Device Spec: ', device_spec)
  
# Getting device index
device_index = device_spec.device_index
  
# Printing the result
print('Device Index: ', device_index)


Output:


Device Spec:  <tensorflow.python.framework.device_spec.DeviceSpecV2 object at 0x7fe5ba96aee8>
Device Index:  0

Example 2:

Python3




# Importing the library
import tensorflow as tf
  
# Initializing Device Specification
device_spec = tf.DeviceSpec(job ="gfg", device_type ="CPU", device_index = 1)
  
# Printing the DeviceSpec object
print('Device Spec: ', device_spec)
  
# Getting device index
device_index = device_spec.device_index
  
# Printing the result
print('Device Index: ', device_index)


Output:


Device Spec:  <tensorflow.python.framework.device_spec.DeviceSpecV2 object at 0x7fe5ba97f048>
Device Index:  1

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS