-
大小: 1.85KB文件类型: .py金币: 1下载: 0 次发布日期: 2021-03-03
- 语言: Python
- 标签: tensorflow GPU
资源简介
【实例简介】Tensorflow gpu_accelerate
【核心代码】Tensorflow gpu_accelerate
代码片段和文件信息
import numpy as np
import matplotlib
from matplotlib import pyplot as plt
# Default parameters for plots
matplotlib.rcParams[‘font.size‘] = 20
matplotlib.rcParams[‘figure.titlesize‘] = 20
matplotlib.rcParams[‘figure.figsize‘] = [9 7]
matplotlib.rcParams[‘font.family‘] = [‘STKaiti‘]
matplotlib.rcParams[‘axes.unicode_minus‘]=False
import tensorflow as tf
import timeit
cpu_data = []
gpu_data = []
for n in range(9):
n = 10**n
# 创建在CPU上运算的2个矩阵
with tf.device(‘/cpu:0‘):
cpu_a = tf.random.normal([1 n])
cpu_b = tf.random.normal([n 1])
print(cpu_a.device cpu_b.device)
# 创建使用GPU运算的2个矩阵
with tf.device(‘/gpu:0‘):
gpu_a = tf.random.normal([1 n])
gpu_b = tf.random.normal([n 1])
print(gpu_a.device gpu_b.device)
def cpu_run():
with tf.device(‘/cpu:0‘):
c = tf.matmul(cpu_a cpu_b)
return c
def gpu_run():
with tf.device(‘/gpu:0‘):
c = t
- 上一篇:pip配置阿里源
- 下一篇:SVM支持向量机(python)
相关资源
- python tensorFlow AND和XOR
- word2vec.py(来自黄文坚的“tensorflow实
- keras+tensorflow CNN
- 基于机器学习框架tensorflow的图像分类
- 机器学习实战:基于 Scikit-Learn 和 T
- 《白话深度学习与TensorFlow》.pdf
- Tensorflow+实战Google深度学习框架
- python MNIST分类 tensorflow
- tensorflow下用LSTM网络进行时间序列预测
- 深度学习之二:用Tensorflow实现卷积神
- tensorflow版本的YOLO v3,在Windows系统下
- Python实现的TensorFlow入门案例
- 《TensorFlow技术解析与实战》高清中文
- python实现TensorFlow2 股票股价预测(源
- 计算 语义分割结果 MIOU,miou.py操作简
- tensorflow做cifar-10识别
- TensorFlow手写数字识别代码
- 基于kNN方法的MNIST手写数字识别Tenso
- cifar10_input.py
- Python-PythonTensorflowKeras实现参数tSNE算法
- TensorFlow实现CNN
- Python TensorFlow手写数字识别
- cnn +rnn +attention 以及CTC-loss融合的文字
- python3 tensorflow alexnet训练与预测
- TensorFlow入门指导中英文 PDF版
- tensorflow提取图片特征-
- tensorflow物体检测-图片目标分类计数
- python+tensorflow+keras 基于Inception-v3模型
评论
共有 条评论