| 457 | } |
| 458 | |
| 459 | ClusteredGraphInfo ClusteringGraphDef( |
| 460 | const MetaGraphDef& mgdef, |
| 461 | CluteringStrategy* cluster_strategy) { |
| 462 | static StaticShapeCluteringStrategy static_strategy; |
| 463 | if (cluster_strategy == nullptr) { |
| 464 | cluster_strategy = &static_strategy; |
| 465 | } |
| 466 | |
| 467 | ClusteredGraphInfo info; |
| 468 | cluster_strategy->Run(mgdef, &info); |
| 469 | |
| 470 | return info; |
| 471 | } |
| 472 | |
| 473 | ClusteredGraphInfo ClusteringGraphDef( |
| 474 | const std::string& tag, |