GPUTensor<T>.empty constructor
Implementation
GPUTensor.empty(List<int> initialShape, {this.creator}) : id = _generateId() {
shape = <int>[];
for (int i = 0; i < initialShape.length; i = i + 1) {
shape.add(initialShape[i]);
}
_allocateEmptyInVram();
}