Graph Topology * nodes per stage: 1 * stages: 4 * src: 1 * sink: 1 */
| 748 | * sink: 1 |
| 749 | */ |
| 750 | static inline int |
| 751 | graph_init_hr(void) |
| 752 | { |
| 753 | uint8_t edge_map[][1][1] = { |
| 754 | { {100} }, |
| 755 | { {100} }, |
| 756 | { {100} }, |
| 757 | { {100} }, |
| 758 | }; |
| 759 | uint8_t src_map[][1] = { {100} }; |
| 760 | uint8_t snk_map[][1] = { {100} }; |
| 761 | |
| 762 | return graph_init("graph_hr", SOURCES(src_map), SINKS(snk_map), |
| 763 | STAGES(edge_map), NODES_PER_STAGE(edge_map), src_map, |
| 764 | snk_map, edge_map, 0); |
| 765 | } |
| 766 | |
| 767 | /* Graph Topology |
| 768 | * nodes per stage: 1 |
nothing calls this directly
no test coverage detected