Skip to content

Commit

Permalink
Added Gradient to index.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanbabbar04 committed Mar 23, 2024
1 parent 4d7cc89 commit 37cf30a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/source/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Derivatives
MPIFirstDerivative
MPISecondDerivative
MPILaplacian
MPIGradient

Solvers
-------
Expand Down
5 changes: 4 additions & 1 deletion pylops_mpi/basicoperators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
MPIFirstDerivative First Derivative
MPISecondDerivative Second Derivative
MPILaplacian Laplacian
MPIGradient Gradient
"""

Expand All @@ -24,6 +25,7 @@
from .FirstDerivative import *
from .SecondDerivative import *
from .Laplacian import *
from .Gradient import *

__all__ = [
"MPIBlockDiag",
Expand All @@ -33,5 +35,6 @@
"MPIHStack",
"MPIFirstDerivative",
"MPISecondDerivative",
"MPILaplacian"
"MPILaplacian",
"MPIGradient"
]

0 comments on commit 37cf30a

Please sign in to comment.