aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src
diff options
context:
space:
mode:
authorGravatar vilmar-hillow <vismut318@gmail.com>2018-07-19 14:52:13 +0300
committerGravatar vilmar-hillow <vismut318@gmail.com>2018-07-19 14:52:13 +0300
commitbdd4871cd0d3159f709de1588532096d32db1390 (patch)
tree26e822d2d08dfd07d8e9292289e7c078b6a01b68 /tensorflow/docs_src
parentdbf10397ed25001f03ed0eac879e328f625fe0d1 (diff)
Typo in tf.Session fixed
Diffstat (limited to 'tensorflow/docs_src')
-rw-r--r--tensorflow/docs_src/performance/performance_guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/docs_src/performance/performance_guide.md b/tensorflow/docs_src/performance/performance_guide.md
index cb0f5ca924..dafacbe379 100644
--- a/tensorflow/docs_src/performance/performance_guide.md
+++ b/tensorflow/docs_src/performance/performance_guide.md
@@ -464,7 +464,7 @@ equal to the number of physical cores rather than logical cores.
config = tf.ConfigProto()
config.intra_op_parallelism_threads = 44
config.inter_op_parallelism_threads = 44
- tf.session(config=config)
+ tf.Session(config=config)
```