mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
24 lines
1.2 KiB
Text
24 lines
1.2 KiB
Text
|
|
########## torch.float64/torch.int64/size=()+(4, 6)+(2, 3)+() ##########
|
||
|
|
# sparse meta tensor
|
||
|
|
tensor(ccol_indices=tensor(..., size=(3,)),
|
||
|
|
row_indices=tensor(..., size=(0,)),
|
||
|
|
values=tensor(..., size=(0, 2, 3)), device='meta', size=(4, 6),
|
||
|
|
dtype=torch.float64, layout=torch.sparse_bsc)
|
||
|
|
########## torch.float64/torch.int64/size=()+(4, 6)+(2, 3)+(3,) ##########
|
||
|
|
# sparse meta tensor
|
||
|
|
tensor(ccol_indices=tensor(..., size=(3,)),
|
||
|
|
row_indices=tensor(..., size=(0,)),
|
||
|
|
values=tensor(..., size=(0, 2, 3, 3)), device='meta', size=(4, 6, 3),
|
||
|
|
dtype=torch.float64, layout=torch.sparse_bsc)
|
||
|
|
########## torch.float64/torch.int64/size=(2,)+(4, 6)+(2, 3)+() ##########
|
||
|
|
# sparse meta tensor
|
||
|
|
tensor(ccol_indices=tensor(..., size=(2, 3)),
|
||
|
|
row_indices=tensor(..., size=(2, 0)),
|
||
|
|
values=tensor(..., size=(2, 0, 2, 3)), device='meta', size=(2, 4, 6),
|
||
|
|
dtype=torch.float64, layout=torch.sparse_bsc)
|
||
|
|
########## torch.float64/torch.int64/size=(2,)+(4, 6)+(2, 3)+(3,) ##########
|
||
|
|
# sparse meta tensor
|
||
|
|
tensor(ccol_indices=tensor(..., size=(2, 3)),
|
||
|
|
row_indices=tensor(..., size=(2, 0)),
|
||
|
|
values=tensor(..., size=(2, 0, 2, 3, 3)), device='meta',
|
||
|
|
size=(2, 4, 6, 3), dtype=torch.float64, layout=torch.sparse_bsc)
|