End

Applicability

Product

Supported

Atlas 350 Accelerator Card

x

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas 200I/500 A2 inference product

x

Atlas inference product AI Core

x

Atlas inference product Vector Core

x

Atlas training product

x

Function Usage

After the convolution backpropagation computation of Conv3DBackpropFilter is complete, End must be called once to clear the event ID and release the temporary memory allocated internally.

Prototype

1
__aicore__ inline void End()

Parameters

None

Returns

None

Restrictions

The End API must be called after the Iterate and GetTensorC APIs.

Examples

1
2
3
4
5
const Conv3DBackpropFilterTilingData* tilingData;
//... Initialize tilingData.
ConvBackpropApi::Conv3DBackpropFilter<inputType, weightSizeType, gradOutputType, gradWeightType> gradWeight_;
//... Other calls
gradWeight_.End();