Skip to content

Commit

Permalink
Merge branch 'main' into production-pilot
Browse files Browse the repository at this point in the history
  • Loading branch information
MTCam committed Feb 4, 2025
2 parents 4440a33 + a5d6234 commit c17afe7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions grudge/array_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,15 +371,15 @@ def _dag_to_compiled_func(self, dict_of_named_arrays,
name_in_program_to_tags.update(part_prg_name_to_tags)
name_in_program_to_axes.update(part_prg_name_to_axes)

from immutabledict import immutabledict
from constantdict import constantdict
return _DistributedCompiledFunction(
actx=self.actx,
distributed_partition=distributed_partition,
part_id_to_prg=part_id_to_prg,
input_id_to_name_in_program=input_id_to_name_in_program,
output_id_to_name_in_program=output_id_to_name_in_program,
name_in_program_to_tags=immutabledict(name_in_program_to_tags),
name_in_program_to_axes=immutabledict(name_in_program_to_axes),
name_in_program_to_tags=constantdict(name_in_program_to_tags),
name_in_program_to_axes=constantdict(name_in_program_to_axes),
output_template=output_template)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
]
dependencies = [
"arraycontext>=2021.1",
"immutables>=0.19",
"constantdict",
"loopy>=2024.1",
"meshmode>=2021.2",
"modepy>=2021.1",
Expand Down

0 comments on commit c17afe7

Please sign in to comment.