Minimum of two inputs.
More...
Minimum of two inputs.
C Interface for min of two arrays.
- Parameters
-
| [out] | out | will contain minimum of lhs and rhs |
| [in] | lhs | first input |
| [in] | rhs | second input |
| [in] | batch | specifies if operations need to be performed in batch mode |
- Returns
- AF_SUCCESS if the execution completes properly
| AFAPI array af::min |
( |
const array & |
lhs, |
|
|
const array & |
rhs |
|
) |
| |
C++ interface for min of two arrays.
- Parameters
-
| [in] | lhs | first input |
| [in] | rhs | second input |
- Returns
- minimum of
lhs and rhs
| AFAPI array af::min |
( |
const array & |
lhs, |
|
|
const double |
rhs |
|
) |
| |
C++ interface for min of two arrays.
- Parameters
-
| [in] | lhs | first input |
| [in] | rhs | second input |
- Returns
- minimum of
lhs and rhs
| AFAPI array af::min |
( |
const double |
lhs, |
|
|
const array & |
rhs |
|
) |
| |
C++ interface for min of two arrays.
- Parameters
-
| [in] | lhs | first input |
| [in] | rhs | second input |
- Returns
- minimum of
lhs and rhs