create_scalar_float
Function Usage
Creates a float scalar tensor.
Prototype
1 | create_scalar_float(value: float) -> TensorHolder |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
value |
Input |
Float. |
Returns
TensorHolder: tensor holder of a scalar.
Constraints
- If the value is not a number, TypeError is thrown.
- If the scalar fails to be created, RuntimeError is thrown.
Parent topic: GraphBuilder