| 89 | } |
| 90 | |
| 91 | void TF_SetXlaConstantFoldingDisabled(unsigned char should_enable) { |
| 92 | tensorflow::GetBuildXlaOpsPassFlags()->tf_xla_disable_constant_folding = |
| 93 | static_cast<bool>(should_enable); |
| 94 | } |
| 95 | |
| 96 | void TF_SetXlaMinClusterSize(int size) { |
| 97 | tensorflow::MarkForCompilationPassFlags* flags = |
nothing calls this directly
no test coverage detected