Skip to content

tileon.language.math

Mathematical Functions

Exponential

  • exp: Exponential function e^x
  • exp2: Exponential base 2 2^x
  • rsqrt: Reciprocal square root 1/sqrt(x)

Logarithmic

  • log: Natural logarithm ln(x)
  • log2: Logarithm base 2

Trigonometric

  • cos: Cosine function
  • sin: Sine function

Power and Root

  • sqrt: Square root
  • sqrt_rn: Rounded square root

Arithmetic

  • fma: Fused multiply-add a * b + c
  • fdiv: Fast division
  • div_rn: Rounded division
  • umulhi: Upper multiplication

Rounding

  • floor: Floor function
  • ceil: Ceiling function

Other

  • abs: Absolute value
  • erf: Error function