Intel® oneAPI Deep Neural Network Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-E265767F-59C9-44BF-8243-3663A0DAA143
Visible to Intel only — GUID: GUID-E265767F-59C9-44BF-8243-3663A0DAA143
enum dnnl::graph::partition::policy
Overview
Policy specifications for partitioning. More…
#include <dnnl_graph.hpp> enum policy { fusion = dnnl_graph_partition_policy_fusion, debug = dnnl_graph_partition_policy_debug, };
Detailed Documentation
Policy specifications for partitioning.
Enum Values
fusion
Fusion policy returns partitions with typical post-op fusions, eg.
Convolution + ReLU or other element-wise operations or a chian of post-ops.
debug
Debug policy doesn’t not apply any fusions.
It returns partitions with single operations in each partition. The policy is useful when users notice any bug or correctness issue in fusion policy.