CbrtΒΆ

Return the cube-root of an array, element-wise.

Abstract Signature:

Cbrt(x: Tensor)

PyTorch

API: torch.pow
Strategy: Macro 'torch.pow({x}, 1.0/3.0)'

JAX (Core)

API: jax.numpy.cbrt
Strategy: Direct Mapping

NumPy

API: numpy.cbrt
Strategy: Direct Mapping

Keras

API: keras.ops.power
Strategy: Macro 'keras.ops.power({x}, 1/3)'

TensorFlow

API: tf.math.pow
Strategy: Macro 'tf.math.pow({x}, 1/3)'

Apple MLX

API: mlx.core.power
Strategy: Macro 'mlx.core.power({x}, 1/3)'

Flax NNX

API: jax.numpy.cbrt
Strategy: Direct Mapping

PaxML / Praxis

API: jax.numpy.cbrt
Strategy: Direct Mapping