系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 脚本中心 > htc > 详细页面

Tensorflow中tf.ConfigProto()的用法详解

时间:2020-02-06来源:系统城作者:电脑系统城

参考Tensorflow Machine Leanrning Cookbook

tf.ConfigProto()主要的作用是配置tf.Session的运算方式,比如gpu运算或者cpu运算

具体代码如下:


 
  1. import tensorflow as tf
  2.  
  3. session_config = tf.ConfigProto(
  4. log_device_placement=True,
  5. inter_op_parallelism_threads=0,
  6. intra_op_parallelism_threads=0,
  7. allow_soft_placement=True)
  8.  
  9. sess = tf.Session(config=session_config)
  10.  
  11. a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2,3], name='b')
  12. b = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[3,2], name='b')
  13.  
  14. c = tf.matmul(a,b)
  15. print(sess.run(c))

具体解释

log_device_placement=True

设置为True时,会打印出TensorFlow使用了那种操作

inter_op_parallelism_threads=0

设置线程一个操作内部并行运算的线程数,比如矩阵乘法,如果设置为0,则表示以最优的线程数处理

intra_op_parallelism_threads=0

设置多个操作并行运算的线程数,比如 c = a + b,d = e + f . 可以并行运算

allow_soft_placement=True

有时候,不同的设备,它的cpu和gpu是不同的,如果将这个选项设置成True,那么当运行设备不满足要求时,会自动分配GPU或者CPU。

其他选项

当使用GPU时候,Tensorflow运行自动慢慢达到最大GPU的内存


 
  1. session_config.gpu_options.allow_growth = True

当使用GPU时,设置GPU内存使用最大比例


 
  1. session_config.gpu_options.per_process_gpu_memory_fraction = 0.4

是否能够使用GPU进行运算


 
  1. tf.test.is_built_with_cuda()

另外的处理方法


 
  1. import tensorflow as tf
  2.  
  3. sess = tf.Session()
  4.  
  5. with tf.device('/cpu:0'):
  6. a = tf.constant([1.0, 3.0, 5.0], shape=[1, 3])
  7. b = tf.constant([2.0, 4.0, 6.0], shape=[3, 1])
  8.  
  9. with tf.device('/gpu:0'):
  10. c = tf.matmul(a, b)
  11. c = tf.reshape(c, [-1])
  12.  
  13. with tf.device('/gpu:0'):
  14. d = tf.matmul(b, a)
  15. flat_d = tf.reshape(d, [-1])
  16.  
  17. combined = tf.multiply(c, flat_d)
  18. print(sess.run(combined))
  19.  

以上这篇Tensorflow中tf.ConfigProto()的用法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载