-
Hi everyone. I am trying to create a simple code as follows:
This causes the error: NotImplementedError: Transpose rule (for reverse-mode differentiation) for 'bcoo_spdot_general' not implemented If I try forward-mode (which is not preferred since How can I fix this issue ?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You're finding out why all of this is under Even if you got the gradients working, the sparse-sparse matmul code is terribly inefficient (see the discussion at #17251): I'd suggest finding a way to write your code without sparse-sparse matrix products, and that would solve both problems. |
Beta Was this translation helpful? Give feedback.
You're finding out why all of this is under
experimental
😁Even if you got the gradients working, the sparse-sparse matmul code is terribly inefficient (see the discussion at #17251): I'd suggest finding a way to write your code without sparse-sparse matrix products, and that would solve both problems.