8.16.0.4
8 Non-differentiable extended numerical functions🔗ℹ
Non-differentiable versions of the functions in Differentiable extended numerical functions. These functions
don’t accept duals or return duals. They are primarily used to seek better memory
performance where automatic differentiation is not required.
(+-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
(--ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
(*-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
(/-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
(expt-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
(exp-ρ t) → tensor?
|
t : tensor? |
(log-ρ t) → tensor?
|
t : tensor? |
(abs-ρ t) → tensor?
|
t : tensor? |
(sqrt-ρ t) → tensor?
|
t : tensor? |
(sqr-ρ t) → tensor?
|
t : tensor? |
(sum-ρ t) → tensor?
|
t : tensor? |
If t is a tensor of rank 1, return the sum of all the scalar? elements in t.
When t is of rank higher than 1, the Unary function extension rules apply.
(sum-cols-ρ t) → tensor?
|
t : tensor? |
If t is a tensor of rank 2, return the sum of all the scalar? elements in t, calculated using
the extended addition function +-ρ.
When t is of rank higher than 2, the Unary function extension rules apply.
When t is of rank 1, this function is the same as sum.
The function is undefined if t is a scalar.
(*-2-1-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
When t0 is a tensor of shape (list m n) and t1 is a tensor of shape (list n),
returns a tensor r of shape (list m n) where the m elements of r are formed
by multiplying each element of t0 with t1 using the extended multiplication function *-ρ.
When the ranks of t0 and t1 are higher than 2 and 1 respectively, the Binary function extension rules apply.
The function is undefined if t0 has rank less than 2 and t1 has rank less than 1.
(argmax-ρ t) → tensor?
|
t : tensor? |
When t is a tensor of rank 1, returns the index of the highest element in t.
When t is of rank higher than 1, the Unary function extension rules apply.
The function is undefined when t is of rank less than 1.
(max-ρ t) → tensor?
|
t : tensor? |
When t is a tensor of rank 1, returns the highest element in t.
When t is of rank higher than 1, the Unary function extension rules apply.
The function is undefined when t is of rank less than 1.
(concat-ρ t u) → tensor?
|
t : tensor? |
u : tensor? |
When t and u are tensors of rank 1, returns a tensor that is the concatenation of t and u.
Otherwise, the Binary function extension rules apply.
The function is undefined when t or u is of rank less than 1.
(concat-n-ρ n) → (-> ([t tensor?] [u tensor?]) tensor?)
|
n : positive-integer? |
When t and u are tensors of rank n, returns a tensor that is the concatenation of t and u.
Otherwise, the Binary function extension rules apply.
The function is undefined when t or u is of rank less than n.
(dot-product-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
When t0 and t1 are tensors of rank 1 and the same shape,
returns a scalar s formed
by multiplying each element of t0 with the corresponding element in t1 and summing the results.
When the ranks of t0 and t1 are higher than 1 and 1 respectively, the Binary function extension rules apply.
The function is undefined if t0 has rank less than 1 and t1 has rank less than 1.
(dot-product-2-1-ρ t0 t1) → tensor?
|
t0 : tensor? |
t1 : tensor? |
When t0 is a tensor of shape (list m n) and t1 is a tensor of shape (list n),
returns a tensor r of shape (list m) where the m elements of r are formed
by the dot-product of each element of t0 with t1.
When the ranks of t0 and t1 are higher than 2 and 1 respectively, the Binary function extension rules apply.
The function is undefined if t0 has rank less than 2 and t1 has rank less than 1.
(correlate-ρ filter-bank signal) → tensor?
|
filter-bank : tensor? |
signal : tensor? |
When filter-bank is a tensor of shape (list b m d) and signal is a tensor of shape (list n d),
returns a tensor r of shape (list n b) which is the correlation of the filter-bank with the signal.
When the ranks of filter-bank and signal are higher than 3 and 2 respectively, the Binary function extension rules apply.