Skip to content

Commit 1d34ede

Browse files
authored
Address comments
1 parent b2d5d47 commit 1d34ede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rfcs/20200520-tensor-float-32.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tf.config.allow_tensor_float_32_execution(True)
3535

3636
The word "allow" emphasizes only certain devices (Ampere GPUs) and ops (such as matmuls and convolutions) will be affected. Once enabled, all local and remote Ampere GPUs use TF32 for supported float32 ops.
3737

38-
Passing `False` to `allow_tensor_float_32_execution` will disable TF32 if already enabled.
38+
Passing `False` to `allow_tensor_float_32_execution` will disable TF32 if already enabled. This is useful if multiple models are run sequentially in the same process, where only some should use TF32. It is also useful for tests, as it allows a test class to test both TF32 being enabled and disabled.
3939

4040
We call the function "allow_tensor_float_32_execution" instead of the more concise "allow_tf32_execution" because people may mistakenly interpret the phrase "tf32" to refer to TensorFlow instead of TensorFloat.
4141

0 commit comments

Comments
 (0)