Docs / nablatensor-core / com.nablatensor.engine
enum
AadOp
Scalar operations a recorded tape can hold.
Enum constants
CONST
A compile-time constant baked into the tape.
INPUT
A named input the caller binds a value to on each replay.
RANDN
A standard normal draw that varies per scenario; produced on-device by the replay kernel.
RANDU
A uniform draw on [0, 1) that varies per scenario; produced on-device by the replay kernel.
ADD
Binary addition, a + b.
SUB
Binary subtraction, a - b.
MUL
Binary multiplication, a * b.
DIV
Binary division, a / b.
NEG
Unary negation, -a.
EXP
Natural exponential, e^a.
LOG
Natural logarithm, ln a.
SQRT
Square root, sqrt(a).
MAX
Binary maximum, max(a, b).
MIN
Binary minimum, min(a, b).
ABS
Absolute value, |a|.