ReduceExtreme

ReduceExtreme#

MIOpen: ReduceExtreme
ReduceExtreme

Enumerations

enum  miopenReduceExtremeOp_t {
  MIOPEN_REDUCE_EXTREME_ARGMIN ,
  MIOPEN_REDUCE_EXTREME_ARGMAX ,
  MIOPEN_REDUCE_EXTREME_MIN ,
  MIOPEN_REDUCE_EXTREME_MAX
}
 

Functions

miopenStatus_t miopenReduceExtremeForward (miopenHandle_t handle, const miopenTensorDescriptor_t xDesc, const void *x, const int32_t dim, const miopenReduceExtremeOp_t reduceExtremeOp, const miopenTensorDescriptor_t yDesc, void *y, const miopenTensorDescriptor_t indiceDesc, void *indice)
 Find the the extreme (minimum, maximum) value and index of a tensor across Dimension. More...
 

Detailed Description

Enumeration Type Documentation

◆ miopenReduceExtremeOp_t

Reduction Extreme operation types

Enumerator
MIOPEN_REDUCE_EXTREME_ARGMIN 

the operation is getting the minimum index of the reduced elements

MIOPEN_REDUCE_EXTREME_ARGMAX 

the operation is getting the maximum index of the reduced elements

MIOPEN_REDUCE_EXTREME_MIN 

the operation is getting the minimum value and index of the reduced elements

MIOPEN_REDUCE_EXTREME_MAX 

the operation is getting the maximum value and index of the reduced elements

Examples
/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-miopen/checkouts/docs-6.2.0/include/miopen/miopen.h.

Function Documentation

◆ miopenReduceExtremeForward()

miopenStatus_t miopenReduceExtremeForward ( miopenHandle_t  handle,
const miopenTensorDescriptor_t  xDesc,
const void *  x,
const int32_t  dim,
const miopenReduceExtremeOp_t  reduceExtremeOp,
const miopenTensorDescriptor_t  yDesc,
void *  y,
const miopenTensorDescriptor_t  indiceDesc,
void *  indice 
)

Find the the extreme (minimum, maximum) value and index of a tensor across Dimension.

Parameters
handleMIOpen handle (input)
xDescTensor descriptor for data input tensor x (input)
xData tensor x (input)
dimDimension to reduce argmax. (input)
reduceExtremeOpEnumerant specifying the operation used by ReduceExtreme (input)
yDescTensor descriptor for reduce data tensor y (input)
yData tensor y (output)
indiceDescTensor descriptor for reduce data tensor indice only int32_t (input)
indiceData tensor indice (output)
Returns
miopenStatus_t
Examples
/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-miopen/checkouts/docs-6.2.0/include/miopen/miopen.h.