fillTensorGPU function
Implementation
void fillTensorGPU(GPUTensor tensor, double value, CommandBuffer tape) {
tape.putInt(OP_FILL);
tape.putString(tensor.id);
tape.putFloat(value);
}
void fillTensorGPU(GPUTensor tensor, double value, CommandBuffer tape) {
tape.putInt(OP_FILL);
tape.putString(tensor.id);
tape.putFloat(value);
}