Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transition to arraycontext #56

Draft
wants to merge 28 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2fd53b4
deprecate DeviceDataRecord
alexfikl Jun 20, 2022
d7a9f03
port translation_classes to arraycontext
alexfikl Jun 20, 2022
058ea81
port rotation_classes to arraycontext
alexfikl Jun 20, 2022
6d92adc
port area_query to arraycontext
alexfikl Jun 20, 2022
b24b4a7
port bounding_box to array_context
alexfikl Jun 21, 2022
eda2ebe
port fmm to array_context
alexfikl Jun 21, 2022
2c30963
port traversal to arraycontext
alexfikl Jun 21, 2022
087ef28
port tree to arraycontext
alexfikl Jun 21, 2022
357d9a7
port tools to arraycontext
alexfikl Jun 22, 2022
c8a0451
port tree_build to arraycontext
alexfikl Jun 22, 2022
bf2bb70
port tree_build_kernels to arraycontext
alexfikl Jun 22, 2022
8ad481d
port pyfmmlib_integration to arraycontext
alexfikl Jun 23, 2022
c5e6828
port cost to arraycontext
alexfikl Jun 23, 2022
44ebaa3
port distributed to arraycontext
alexfikl Jun 26, 2022
2a33a97
add tests for DeviceDataRecord based on arraycontext
alexfikl Jun 22, 2022
c48167f
port test_traversal to arraycontext
alexfikl Jun 22, 2022
9acfd5f
port test_tree to arraycontext
alexfikl Jun 23, 2022
d4a1a04
port test_fmm to arraycontext
alexfikl Jun 23, 2022
d969c5c
port test_cost_model to arraycontext
alexfikl Jun 23, 2022
f308ac1
port test_distributed to arraycontext
alexfikl Jun 26, 2022
aadcd85
port examples to arraycontext
alexfikl Jun 26, 2022
8c00980
remove ImmutableHostDeviceArray
alexfikl Jun 26, 2022
88907dc
docs: add arraycontext
alexfikl Jun 24, 2022
158c629
update fmm interface for sumpy
alexfikl Sep 7, 2022
d08f3f1
rip out timing collection
alexfikl Sep 23, 2022
2accff7
ruff: mark arraycontext as first-party
alexfikl Jul 19, 2024
de8e194
point ci to modified downstreams
alexfikl Aug 2, 2022
02137d5
test: wrap meshmode array context
alexfikl Jul 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ jobs:
curl -L -O https://tiker.net/ci-support-v0
. ci-support-v0

if [[ "$DOWNSTREAM_PROJECT" == "pytential" && "$GITHUB_HEAD_REF" == "rename-nterms" ]]; then
DOWNSTREAM_PROJECT=https://github.com/gaohao95/pytential.git@rename-nterms
if [[ "$GITHUB_HEAD_REF" == "towards-array-context" ]]; then
DOWNSTREAM_PROJECT=https://github.com/alexfikl/${DOWNSTREAM_PROJECT}.git@towards-array-context
fi
test_downstream "$DOWNSTREAM_PROJECT"

Expand Down
4 changes: 0 additions & 4 deletions .pylintrc-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@

- arg: extension-pkg-whitelist
val: pyfmmlib

# Needed for boxtree.tools
- arg: init-hook
val: import sys; sys.setrecursionlimit(2000)
Comment on lines -7 to -9
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure what in boxtree.tools was overworking pylint, but it doesn't seem necessary anymore (?).

8 changes: 4 additions & 4 deletions boxtree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@
two arrays, one whose name ends in ``_starts``, and another whose
name ends in ``_lists``. For example,
suppose we would like to find the colleagues of box #17 using
:attr:`boxtree.traversal.FMMTraversalInfo.colleagues_starts`
:attr:`boxtree.traversal.FMMTraversalInfo.same_level_non_well_sep_boxes_starts`
and
:attr:`boxtree.traversal.FMMTraversalInfo.colleagues_lists`.
:attr:`boxtree.traversal.FMMTraversalInfo.same_level_non_well_sep_boxes_lists`.

The following snippet of code achieves this::

ibox = 17
start, end = colleagues_starts[ibox:ibox+2]
ibox_colleagues = colleagues_lists[start:end]
start, end = same_level_non_well_sep_boxes_starts[ibox:ibox+2]
ibox_colleagues = same_level_non_well_sep_boxes_lists[start:end]

This indexing scheme has the following properties:

Expand Down
Loading
Loading