numpy_ipps.rounding module

Rounding Functions.

class numpy_ipps.rounding.Ceil[source]

Floor Function.

Numpy dtype candidates: float32, float64
Constructor signature: (dtype, size=None)
Call signature: (src, dst)
dtype_candidates = (<class 'numpy.float32'>, <class 'numpy.float64'>)
class numpy_ipps.rounding.Floor[source]

Floor Function.

Numpy dtype candidates: float32, float64
Constructor signature: (dtype, size=None)
Call signature: (src, dst)
dtype_candidates = (<class 'numpy.float32'>, <class 'numpy.float64'>)
class numpy_ipps.rounding.Frac[source]

Frac Function.

Numpy dtype candidates: float32, float64
Constructor signature: (dtype, size=None)
Call signature: (src, dst)
dtype_candidates = (<class 'numpy.float32'>, <class 'numpy.float64'>)
class numpy_ipps.rounding.Round[source]

Round Function.

Numpy dtype candidates: float32, float64
Constructor signature: (size, dtype)
Call signature: (dtype)
dtype_candidates = (<class 'numpy.float32'>, <class 'numpy.float64'>)
class numpy_ipps.rounding.Trunc[source]

Trunc Function.

Numpy dtype candidates: float32, float64
Constructor signature: (dtype, size=None)
Call signature: (src, dst)
dtype_candidates = (<class 'numpy.float32'>, <class 'numpy.float64'>)