End
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
x |
|
x |
|
x |
|
x |
Function
After the convolution backpropagation computation of Conv3DBackpropInput 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.
Example
1 2 3 4 5 | const Conv3DBackpropInputTilingData* tilingData; //... Initialize tilingData. ConvBackpropApi::Conv3DBackpropInput<weightDxType, inputSizeDxType, gradOutputDxType, gradInputDxType> gradInput_; //... Other calls gradInput_.End(); |
Parent topic: Conv3DBackpropInput Kernel API