TensorBufferFloat constructor

TensorBufferFloat(
  1. List<int> shape
)

Creates a TensorBufferFloat with specified shape.

Throws ArgumentError.notNull if shape is null. Throws ArgumentError if shape has non-positive elements.

Implementation

TensorBufferFloat(List<int> shape) : super(shape);