Skip to main content

ClikaRT::ops::log1p

function

log1p()

Tensor log1p(Tensor x)

Elementwise log(1 + x), accurate for small x.

ln(1+xi)\ln(1 + x_i)

Inputs below -1 produce NaN; exactly -1 produces -inf. Value-domain violations follow IEEE semantics (NaN / ±inf in the result), never an error.

Throws

  • ClikaRT::Error: when the input's dtype is not served for this operation (the machine-readable reason rides code_name()).

Returns: a new tensor, same shape and dtype as x.

auto y = ClikaRT::ops::log1p(x);

Declared in ClikaRT/compute/ops.h, line 5014