-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from ucl-bug/plum-update
Plum update
- Loading branch information
Showing
39 changed files
with
1,450 additions
and
1,092 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# `jaxdf.operators.differential` | ||
# `jaxdf.operators.linear_algebra` | ||
|
||
## `dot_product` | ||
|
||
Returns the dot product $`u \cdot v`$ between two vector fields $`u`$ and $`v`$. | ||
Returns the dot product $u \cdot v$ between two vector fields $u$ and $v$. | ||
|
||
{{ implementations('jaxdf.operators.differential', 'dot_product') }} | ||
{{ implementations('jaxdf.operators.linear_algebra', 'dot_product') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# nopycln: file | ||
from jaxdf.core import operator, debug_config, constants # isort:skip | ||
from jaxdf import util, geometry # isort:skip | ||
from jaxdf.discretization import * # isort:skip | ||
from jaxdf.core import operator, debug_config, constants # isort:skip | ||
from jaxdf import util, geometry # isort:skip | ||
from jaxdf.discretization import * # isort:skip | ||
|
||
# Must be imported after discretization | ||
from jaxdf.operators.magic import * # isort:skip | ||
from jaxdf import operators # isort:skip | ||
from jaxdf.operators.magic import * # isort:skip | ||
from jaxdf import operators # isort:skip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.