Deep Neural Network Library (DNNL)  1.1.3
Performance library for Deep Learning
Sum

API reference: C, C++

The sum primitive sums \(N\) tensors:

\[ dst(\overline{x}) = \sum\limits_{i = 1}^{N} scales(i) \cdot src_i(\overline{x}) \]

The sum primitive doesn't have a notion of forward or backward propagations. The backward propagation for the sum operation is simply an identity operation.

Implementation Details

General Notes

Post-ops and Attributes

The sum primitive doesn't support any post-ops or attributes.

Data Types Support

The sum primitive supports arbitrary data types for source and destination tensors according to the Data Types page.

Data Representation

Sources, Destination

The sum primitive works with arbitrary data tensors. There is no special meaning associated with any logical dimensions.

Implementation Limitations

  1. No primitive specific limitations. Refer to Data Types for limitations related to data types support.

Performance Tips