Get the tvm version from the json graph. Parameters ---------- jgraph : dict The json graph.
(jgraph)
| 20 | |
| 21 | |
| 22 | def get_version(jgraph): |
| 23 | """ |
| 24 | Get the tvm version from the json graph. |
| 25 | |
| 26 | Parameters |
| 27 | ---------- |
| 28 | jgraph : dict |
| 29 | The json graph. |
| 30 | """ |
| 31 | return jgraph["metadata"]["tvm_version"] |
| 32 | |
| 33 | |
| 34 | def create_updater(node_map, from_ver, to_ver): |
no outgoing calls
no test coverage detected
searching dependent graphs…