yes, we know about this one
it is not easy to fix
it is related to the fact that torch.random() might be used both for
numbers or tensors
and if you get a tensor, you have to dispatch to the right C function,
which handles the right type
anyways, it would be too long to explain the details. the cuda package
does not provide torch.random(), and you get this problem
in the meantime, you can do torch.CudaTensor.random =
torch.DoubleTensor.torch.random to fix the issue above