Gong Zheng

Results 1 issues of Gong Zheng

` import pytorch_complex_tensor as pct import torch if __name__ == '__main__': C = torch.FloatTensor([[1, 1, 1], [2, 2, 2], [3, 3, 3], [4, 4, 4]]) C = C.cuda() print(pct.ComplexTensor(C)) `...