| 136 | /* ========================== JITConfig ========================== */ |
| 137 | |
| 138 | bool ComputingGraph::Options::GraphOpt::JITConfig::enabled() const { |
| 139 | if (fuse_dimshuffle != UNSET) |
| 140 | return true; |
| 141 | if (fuse_reduce != UNSET) |
| 142 | return true; |
| 143 | return false; |
| 144 | } |
| 145 | |
| 146 | void ComputingGraph::Options::GraphOpt::JITConfig::update(const JITConfig& modifier) { |
| 147 | if (modifier.fuse_dimshuffle != UNSET) { |
no outgoing calls
no test coverage detected