Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grudge
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
grudge
Commits
5f2acca2
Commit
5f2acca2
authored
2 years ago
by
Andreas Klöckner
Committed by
Andreas Klöckner
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
op: List exported symbols in __all__
parent
a6164cf2
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
grudge/op.py
+42
-4
42 additions, 4 deletions
grudge/op.py
with
42 additions
and
4 deletions
grudge/op.py
+
42
−
4
View file @
5f2acca2
...
...
@@ -67,10 +67,10 @@ import numpy as np
import
grudge.dof_desc
as
dof_desc
from
grudge.interpolation
import
interp
# noqa: F401
from
grudge.projection
import
project
# noqa: F401
from
grudge.interpolation
import
interp
from
grudge.projection
import
project
from
grudge.reductions
import
(
# noqa: F401
from
grudge.reductions
import
(
norm
,
nodal_sum
,
nodal_min
,
...
...
@@ -85,7 +85,7 @@ from grudge.reductions import ( # noqa: F401
elementwise_integral
,
)
from
grudge.trace_pair
import
(
# noqa: F401
from
grudge.trace_pair
import
(
interior_trace_pair
,
interior_trace_pairs
,
connected_ranks
,
...
...
@@ -95,6 +95,44 @@ from grudge.trace_pair import ( # noqa: F401
)
__all__
=
(
"
project
"
,
"
interp
"
,
"
norm
"
,
"
nodal_sum
"
,
"
nodal_min
"
,
"
nodal_max
"
,
"
nodal_sum_loc
"
,
"
nodal_min_loc
"
,
"
nodal_max_loc
"
,
"
integral
"
,
"
elementwise_sum
"
,
"
elementwise_max
"
,
"
elementwise_min
"
,
"
elementwise_integral
"
,
"
interior_trace_pair
"
,
"
interior_trace_pairs
"
,
"
connected_ranks
"
,
"
cross_rank_trace_pairs
"
,
"
bdry_trace_pair
"
,
"
bv_trace_pair
"
,
"
local_grad
"
,
"
local_d_dx
"
,
"
local_div
"
,
"
weak_local_grad
"
,
"
weak_local_d_dx
"
,
"
weak_local_div
"
,
"
mass
"
,
"
inverse_mass
"
,
"
face_mass
"
,
)
# {{{ common derivative "kernels"
def
_single_axis_derivative_kernel
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment