Ejemplo n.º 1
0
Archivo: csr.py Proyecto: 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
Ejemplo n.º 2
0
Archivo: csr.py Proyecto: mnicely/cupy
 def sort_indices(self):
     """Sorts the indices of the matrix in place."""
     cusparse.csrsort(self)