| 21 | |
| 22 | namespace tensorflow { |
| 23 | bool MatmulAutotuneEnable() { |
| 24 | bool value; |
| 25 | Status status = |
| 26 | ReadBoolFromEnvVar("TF_MATMUL_AUTOTUNE_ENABLE", false, &value); |
| 27 | if (!status.ok()) { |
| 28 | LOG(ERROR) << status.error_message(); |
| 29 | } |
| 30 | return value; |
| 31 | } |
| 32 | |
| 33 | bool MatmulDoFP32ComputationFP16Input() { |
| 34 | bool value; |
no test coverage detected