Expand description
Math FFI Functions for JIT
Trigonometric and mathematical functions for JIT-compiled code.
§SIMD Optimization
Series arithmetic (+, -, *, /) uses SIMD-accelerated operations from shape-runtime for high performance vectorized computation.
Functions§
- jit_
acos - jit_
asin - jit_
atan - jit_cos
- jit_exp
- jit_
generic_ add - Generic add that handles Time + Duration, Duration + Duration, etc.
- jit_
generic_ div - Generic division for JIT (Series / Series, Series / number, number / Series, etc.)
- jit_
generic_ eq - Generic equality that handles strings, booleans, and other non-numeric types. Compares string contents (not pointer identity), numbers by value, booleans by tag.
- jit_
generic_ mul - Generic multiplication for JIT (Series * Series, Series * number, number * Series, etc.)
- jit_
generic_ neq - Generic inequality — inverse of jit_generic_eq.
- jit_
generic_ sub - Generic subtract that handles Time - Duration, Duration - Duration, etc.
- jit_ln
- jit_log
- jit_pow
- jit_
series_ gt - Generic comparison for Series > Series, Series > number, etc. Returns a Series of 1.0/0.0 for series comparisons, or a boolean for scalars.
- jit_
series_ gte - jit_
series_ lt - jit_
series_ lte - jit_sin
- jit_tan