MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / MatmulAutotuneEnable

Function MatmulAutotuneEnable

tensorflow/core/util/matmul_autotune.cc:23–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22namespace tensorflow {
23bool 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
33bool MatmulDoFP32ComputationFP16Input() {
34 bool value;

Callers 1

FusedMatMulOpMethod · 0.85

Calls 2

ReadBoolFromEnvVarFunction · 0.70
okMethod · 0.45

Tested by

no test coverage detected