中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

ubuntu如何測試gpu性能

小新
897
2021-02-02 12:37:43
欄目: 智能運維

ubuntu如何測試gpu性能

ubuntu測試gpu性能的方法:

1.測試系統自動分配設備示例:

#-*- coding:utf-8 -*-

import tensorflow as tf

# 新建一個 graph.

a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3], name='a')

b = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[3, 2], name='b')

c = tf.matmul(a, b)

# 新建session with log_device_placement并設置為True.

sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))

# 運行這個 op.

print(sess.run(c))

輸出如下:

Device mapping:

/job:localhost/replica:0/task:0/gpu:0 -> device: 0, name: Tesla K40c, pci bus

id: 0000:05:00.0

b: /job:localhost/replica:0/task:0/gpu:0

a: /job:localhost/replica:0/task:0/gpu:0

MatMul: /job:localhost/replica:0/task:0/gpu:0

[[ 22. 28.]

[ 49. 64.]]

2.測試手動指定分配設備示例:

#-*- coding:utf-8 -*-

import tensorflow as tf

# 新建一個graph.

with tf.device('/cpu:0'):

a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3], name='a')

b = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[3, 2], name='b')

c = tf.matmul(a, b)

# 新建session with log_device_placement并設置為True.

sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))

# 運行這個op.

print(sess.run(c))

a和b操作都被指派給了cpu:0,輸出如下:

Device mapping:

/job:localhost/replica:0/task:0/gpu:0 -> device: 0, name: Tesla K40c, pci bus

id: 0000:05:00.0

b: /job:localhost/replica:0/task:0/cpu:0

a: /job:localhost/replica:0/task:0/cpu:0

MatMul: /job:localhost/replica:0/task:0/gpu:0

[[ 22. 28.]

[ 49. 64.]]

0
凌云县| 新和县| 广南县| 三台县| 阿荣旗| 沁源县| 东乡| 罗平县| 桂林市| 南平市| 定襄县| 夹江县| 泸西县| 金塔县| 响水县| 阳朔县| 高州市| 临洮县| 白朗县| 历史| 伊宁市| 宁陕县| 湟源县| 望谟县| 临沧市| 泰和县| 海城市| 桃园市| 八宿县| 鄢陵县| 大同县| 高雄市| 武平县| 卓尼县| 连云港市| 会宁县| 武胜县| 常州市| 洛浦县| 江都市| 济宁市|