Skip to content

Commit

Permalink
add other backend's bspmm
Browse files Browse the repository at this point in the history
  • Loading branch information
gyzhou2000 committed Jun 26, 2024
1 parent 4c317a9 commit a460dbf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gammagl/mpops/mindspore.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ def segment_max(x, segment_ids, num_segments=None):

def gspmm(index, weight=None, x=None, reduce='sum'):
pass

def bspmm(index, weight=None, x=None, reduce='sum'):
pass
3 changes: 3 additions & 0 deletions gammagl/mpops/paddle.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,3 +222,6 @@ def _scatter(x, index, updates, overwrite=True):

def gspmm(index, weight=None, x=None, reduce='sum'):
pass

def bspmm(index, weight=None, x=None, reduce='sum'):
pass
3 changes: 3 additions & 0 deletions gammagl/mpops/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ def segment_min(x, segment_ids, num_segments=None):

def gspmm(index, weight=None, x=None, reduce='sum'):
pass

def bspmm(index, weight=None, x=None, reduce='sum'):
pass

0 comments on commit a460dbf

Please sign in to comment.