- สำหรับ TensorFlow:
TensorFlow ใช้ GPU
นี่คือตัวอย่างโค้ดเกี่ยวกับวิธีการใช้ดังนั้นสำหรับแต่ละภารกิจจะถูกระบุรายการด้วยอุปกรณ์ / อุปกรณ์:
# Creates a graph.
c = []
for d in ['/gpu:2', '/gpu:3']:
with tf.device(d):
a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3])
b = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[3, 2])
c.append(tf.matmul(a, b))
with tf.device('/cpu:0'):
sum = tf.add_n(c)
# Creates a session with log_device_placement set to True.
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
# Runs the op.
print(sess.run(sum))
tf จะใช้ GPU เป็นค่าเริ่มต้นสำหรับการคำนวณแม้ว่าจะใช้กับ CPU (หากปัจจุบันรองรับ GPU) ดังนั้นคุณสามารถทำเพื่อลูป: "สำหรับ d ใน ['/ gpu: 1', '/ gpu: 2', '/ gpu: 3' ... '/ gpu: 8',]:" และใน "tf.device (d)" ควรรวมทรัพยากร GPU ของคุณทุกอินสแตนซ์ ดังนั้น tf.device () จะถูกใช้งานจริง
Scaling Keras Model Training เป็น GPU หลายตัว
- Keras
สำหรับ Keras โดยใช้ Mxnet กว่าargs.num_gpusโดยที่num_gpusเป็นรายการของ GPU ที่คุณต้องการ
def backend_agnostic_compile(model, loss, optimizer, metrics, args):
if keras.backend._backend == 'mxnet':
gpu_list = ["gpu(%d)" % i for i in range(args.num_gpus)]
model.compile(loss=loss,
optimizer=optimizer,
metrics=metrics,
context = gpu_list)
else:
if args.num_gpus > 1:
print("Warning: num_gpus > 1 but not using MxNet backend")
model.compile(loss=loss,
optimizer=optimizer,
metrics=metrics)
- horovod.tensorflow
เหนือสิ่งอื่นใดจาก Uber ที่เปิดให้บริการ Horovod เมื่อเร็ว ๆ นี้และฉันคิดว่าเยี่ยมมาก:
Horovod
import tensorflow as tf
import horovod.tensorflow as hvd
# Initialize Horovod
hvd.init()
# Pin GPU to be used to process local rank (one GPU per process)
config = tf.ConfigProto()
config.gpu_options.visible_device_list = str(hvd.local_rank())
# Build model…
loss = …
opt = tf.train.AdagradOptimizer(0.01)
# Add Horovod Distributed Optimizer
opt = hvd.DistributedOptimizer(opt)
# Add hook to broadcast variables from rank 0 to all other processes during
# initialization.
hooks = [hvd.BroadcastGlobalVariablesHook(0)]
# Make training operation
train_op = opt.minimize(loss)
# The MonitoredTrainingSession takes care of session initialization,
# restoring from a checkpoint, saving to a checkpoint, and closing when done
# or an error occurs.
with tf.train.MonitoredTrainingSession(checkpoint_dir=“/tmp/train_logs”,
config=config,
hooks=hooks) as mon_sess:
while not mon_sess.should_stop():
# Perform synchronous training.
mon_sess.run(train_op)