narrow.py 4.54 KB
Newer Older
rusty1s's avatar
rusty1s committed
1
2
from typing import Tuple

rusty1s's avatar
rusty1s committed
3
import torch
rusty1s's avatar
rusty1s committed
4
5
from torch_sparse.storage import SparseStorage
from torch_sparse.tensor import SparseTensor
rusty1s's avatar
rusty1s committed
6
7


rusty1s's avatar
rusty1s committed
8
9
def narrow(src: SparseTensor, dim: int, start: int,
           length: int) -> SparseTensor:
rusty1s's avatar
rusty1s committed
10
11
12
13
14
    if dim < 0:
        dim = src.dim() + dim

    if start < 0:
        start = src.size(dim) + start
rusty1s's avatar
rusty1s committed
15

rusty1s's avatar
rusty1s committed
16
    if dim == 0:
rusty1s's avatar
rusty1s committed
17
        rowptr, col, value = src.csr()
rusty1s's avatar
rusty1s committed
18

rusty1s's avatar
rusty1s committed
19
20
21
22
        rowptr = rowptr.narrow(0, start=start, length=length + 1)
        row_start = rowptr[0]
        rowptr = rowptr - row_start
        row_length = rowptr[-1]
rusty1s's avatar
rusty1s committed
23

rusty1s's avatar
rusty1s committed
24
25
26
        row = src.storage._row
        if row is not None:
            row = row.narrow(0, row_start, row_length) - start
rusty1s's avatar
rusty1s committed
27

rusty1s's avatar
rusty1s committed
28
        col = col.narrow(0, row_start, row_length)
rusty1s's avatar
rusty1s committed
29

rusty1s's avatar
rusty1s committed
30
        if value is not None:
rusty1s's avatar
rusty1s committed
31
            value = value.narrow(0, row_start, row_length)
rusty1s's avatar
rusty1s committed
32

rusty1s's avatar
rusty1s committed
33
        sparse_sizes = (length, src.sparse_size(1))
rusty1s's avatar
rusty1s committed
34

rusty1s's avatar
rusty1s committed
35
36
37
38
39
40
41
42
43
        rowcount = src.storage._rowcount
        if rowcount is not None:
            rowcount = rowcount.narrow(0, start=start, length=length)

        storage = SparseStorage(row=row, rowptr=rowptr, col=col, value=value,
                                sparse_sizes=sparse_sizes, rowcount=rowcount,
                                colptr=None, colcount=None, csr2csc=None,
                                csc2csr=None, is_sorted=True)
        return src.from_storage(storage)
rusty1s's avatar
rusty1s committed
44

rusty1s's avatar
rusty1s committed
45
    elif dim == 1:
rusty1s's avatar
rusty1s committed
46
        # This is faster than accessing `csc()` contrary to the `dim=0` case.
rusty1s's avatar
rusty1s committed
47
        row, col, value = src.coo()
rusty1s's avatar
rusty1s committed
48
        mask = (col >= start) & (col < start + length)
rusty1s's avatar
rusty1s committed
49

rusty1s's avatar
rusty1s committed
50
51
        row = row[mask]
        col = col[mask] - start
rusty1s's avatar
rusty1s committed
52

rusty1s's avatar
rusty1s committed
53
54
55
        if value is not None:
            value = value[mask]

rusty1s's avatar
rusty1s committed
56
        sparse_sizes = (src.sparse_size(0), length)
rusty1s's avatar
rusty1s committed
57
58

        colptr = src.storage._colptr
rusty1s's avatar
rusty1s committed
59
60
61
62
        if colptr is not None:
            colptr = colptr.narrow(0, start=start, length=length + 1)
            colptr = colptr - colptr[0]

rusty1s's avatar
rusty1s committed
63
64
65
        colcount = src.storage._colcount
        if colcount is not None:
            colcount = colcount.narrow(0, start=start, length=length)
rusty1s's avatar
rusty1s committed
66

rusty1s's avatar
rusty1s committed
67
68
69
70
71
        storage = SparseStorage(row=row, rowptr=None, col=col, value=value,
                                sparse_sizes=sparse_sizes, rowcount=None,
                                colptr=colptr, colcount=colcount, csr2csc=None,
                                csc2csr=None, is_sorted=True)
        return src.from_storage(storage)
rusty1s's avatar
rusty1s committed
72
73

    else:
rusty1s's avatar
rusty1s committed
74
75
76
77
78
79
80
        value = src.storage.value()
        if value is not None:
            return src.set_value(value.narrow(dim - 1, start, length),
                                 layout='coo')
        else:
            raise ValueError

rusty1s's avatar
rusty1s committed
81

rusty1s's avatar
rusty1s committed
82
83
84
85
def __narrow_diag__(src: SparseTensor, start: Tuple[int, int],
                    length: Tuple[int, int]) -> SparseTensor:
    # This function builds the inverse operation of `cat_diag` and should hence
    # only be used on *diagonally stacked* sparse matrices.
rusty1s's avatar
rusty1s committed
86
    # That's the reason why this method is marked as *private*.
rusty1s's avatar
rusty1s committed
87
88
89
90

    rowptr, col, value = src.csr()

    rowptr = rowptr.narrow(0, start=start[0], length=length[0] + 1)
rusty1s's avatar
rusty1s committed
91
    row_start = int(rowptr[0])
rusty1s's avatar
rusty1s committed
92
    rowptr = rowptr - row_start
rusty1s's avatar
rusty1s committed
93
    row_length = int(rowptr[-1])
rusty1s's avatar
rusty1s committed
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112

    row = src.storage._row
    if row is not None:
        row = row.narrow(0, row_start, row_length) - start[0]

    col = col.narrow(0, row_start, row_length) - start[1]

    if value is not None:
        value = value.narrow(0, row_start, row_length)

    sparse_sizes = length

    rowcount = src.storage._rowcount
    if rowcount is not None:
        rowcount = rowcount.narrow(0, start[0], length[0])

    colptr = src.storage._colptr
    if colptr is not None:
        colptr = colptr.narrow(0, start[1], length[1] + 1)
rusty1s's avatar
rusty1s committed
113
        colptr = colptr - int(colptr[0])  # i.e. `row_start`
rusty1s's avatar
rusty1s committed
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133

    colcount = src.storage._colcount
    if colcount is not None:
        colcount = colcount.narrow(0, start[1], length[1])

    csr2csc = src.storage._csr2csc
    if csr2csc is not None:
        csr2csc = csr2csc.narrow(0, row_start, row_length) - row_start

    csc2csr = src.storage._csc2csr
    if csc2csr is not None:
        csc2csr = csc2csr.narrow(0, row_start, row_length) - row_start

    storage = SparseStorage(row=row, rowptr=rowptr, col=col, value=value,
                            sparse_sizes=sparse_sizes, rowcount=rowcount,
                            colptr=colptr, colcount=colcount, csr2csc=csr2csc,
                            csc2csr=csc2csr, is_sorted=True)
    return src.from_storage(storage)


rusty1s's avatar
rusty1s committed
134
135
SparseTensor.narrow = lambda self, dim, start, length: narrow(
    self, dim, start, length)
rusty1s's avatar
rusty1s committed
136
137
SparseTensor.__narrow_diag__ = lambda self, start, length: __narrow_diag__(
    self, start, length)