Get the name of OneDNN op from original TensorFlow op We prefix 'OneDNN' to the original op to get OneDNN op.
| 126 | // Get the name of OneDNN op from original TensorFlow op |
| 127 | // We prefix 'OneDNN' to the original op to get OneDNN op. |
| 128 | inline string GetMklOpName(const string& name) { |
| 129 | return string(kMklOpPrefix) + name; |
| 130 | } |
| 131 | |
| 132 | // Get the name of OneDNN Eager op from original TensorFlow op |
| 133 | // We prefix 'MklEager' to the original op to get OneDNN Eager op. |
no outgoing calls
no test coverage detected