Table of Contents |
---|
Introduction
TensorFlow is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. This flexible architecture lets you deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device without rewriting code. TensorFlow also includes TensorBoard, a data visualization toolkit.
Usage
Installation
No Format |
---|
module load python/2.7.1-shared
module load gcc/4.9.3
module load cuda/4.0.17
cd /sw/DeepLearning/TensorFlow/src
git clone https://github.com/tensorflow/tensorflow
cd /sw/DeepLearning/TensorFlow/src/tensorflow
>>>>>>>>>>
./configure
Please specify the location of python. [Default is /sw/python/2.7.1-shared/bin/python]:
Do you wish to build TensorFlow with Google Cloud Platform support? [y/N] N
No Google Cloud Platform support will be enabled for TensorFlow
Found possible Python library paths:
/sw/python/2.7.1-shared/lib/python2.7/site-packages
Please input the desired Python library path to use. Default is [/sw/python/2.7.1-shared/lib/python2.7/site-packages]
/sw/python/2.7.1-shared/lib/python2.7/site-packages
Do you wish to build TensorFlow with GPU support? [y/N] N
No GPU support will be enabled for TensorFlow
Configuration finished
>>>>>>>>>
|
...