| 7452 | } |
| 7453 | |
| 7454 | static cbm_graph_access_t cbm_tiered_profile_access(cbm_graph_profile_dialect_t dialect) { |
| 7455 | return cbm_graph_dialect_direct_capable(dialect) ? CBM_GRAPH_ACCESS_DIRECT |
| 7456 | : CBM_GRAPH_ACCESS_HANDOFF; |
| 7457 | } |
| 7458 | |
| 7459 | static cbm_graph_access_t cbm_tiered_profile_set_access(cbm_tiered_profile_set_t profiles) { |
| 7460 | return !profiles.force_handoff && cbm_graph_dialect_direct_capable(profiles.dialect) |
no test coverage detected