Exemplo n.º 1
0
Arquivo: csr.py Projeto: toslunar/cupy
    def sort_indices(self):
        """Sorts the indices of this matrix *in place*.

        .. warning::
            Calling this function might synchronize the device.

        """
        if not self.has_sorted_indices:
            cusparse.csrsort(self)
            self.has_sorted_indices = True
Exemplo n.º 2
0
Arquivo: csr.py Projeto: mnicely/cupy
 def sort_indices(self):
     """Sorts the indices of the matrix in place."""
     cusparse.csrsort(self)