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

Summarize changes to support prediction #1

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e733704
Apply CEESD changes
MTCam Jul 18, 2024
ea7aa6b
Merge branch 'main' into production-pilot
MTCam Jul 26, 2024
f400c8a
Add annular cylinder init func.
MTCam Jul 30, 2024
adbfac3
Merge branch 'add-annular-cylinder-init' into production-pilot
MTCam Jul 30, 2024
4cd3e78
Merge branch 'main' into production-pilot-up2date
MTCam Aug 29, 2024
86d8611
Defer switch to actx.np.zeros
MTCam Aug 29, 2024
0bf78f8
Merge branch 'main' into production-pilot
MTCam Sep 3, 2024
2275a94
Revert "Add some diagnostic checks to ferret out loop-nest errors."
matthiasdiener Sep 4, 2024
039bdbd
Fusion actx: cache transform_loopy_program
matthiasdiener Sep 5, 2024
6eeba39
Merge pull request #8 from illinois-ceesd/fusion-actx-cache-loopy-tra…
matthiasdiener Sep 6, 2024
d88cba9
Merge branch 'main' into production-pilot
matthiasdiener Sep 6, 2024
6886f21
hotfix: don't fail when another rank added transformation
matthiasdiener Sep 6, 2024
fb3f2df
Merge branch 'main' into production-pilot
MTCam Oct 13, 2024
749dfae
slight pedantry
MTCam Oct 21, 2024
a809c47
Merge branch 'main' into production-pilot
MTCam Nov 5, 2024
cc8e781
Remove extraneous Optional
MTCam Nov 5, 2024
0224ca9
Merge branch 'production-pilot' into production
MTCam Nov 6, 2024
451e7f8
Merge branch 'main' into production-pilot
MTCam Nov 15, 2024
60f25c0
Merge branch 'production-pilot' into production
MTCam Nov 19, 2024
751336b
Merge branch 'main' into production-pilot
MTCam Nov 19, 2024
8957330
Merge branch 'main' into production-pilot
MTCam Nov 28, 2024
a7237df
Merge branch 'main' into production-pilot
MTCam Dec 2, 2024
e414d6d
Merge branch 'main' into production-pilot
MTCam Dec 5, 2024
aa108f1
upgrade cache miss to logger.info
matthiasdiener Dec 11, 2024
de4f9ed
Merge branch 'production-pilot' into production
MTCam Dec 12, 2024
55883af
Merge branch 'main' into production-pilot
MTCam Dec 17, 2024
7fd9109
Merge branch 'production-pilot' into production
MTCam Dec 18, 2024
e459c9d
Merge branch 'main' into production-pilot
MTCam Jan 27, 2025
e63dd83
Merge branch 'main' into production-pilot-merge-main
MTCam Feb 3, 2025
84a97ea
Merge branch 'main' into production-pilot
MTCam Feb 10, 2025
d79558d
Merge branch 'main' into production-pilot
MTCam Feb 11, 2025
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
Prev Previous commit
Next Next commit
hotfix: don't fail when another rank added transformation
matthiasdiener committed Sep 6, 2024
commit 6886f21ce56f2de7d8a516934fa2c03abfe38bb6
2 changes: 1 addition & 1 deletion meshmode/array_context.py
Original file line number Diff line number Diff line change
@@ -1136,7 +1136,7 @@
import loopy as lp
from loopy.match import ObjTagged

# A mapping from inames that the instruction accesss to

Check warning on line 1139 in meshmode/array_context.py

GitHub Actions / Typos

"accesss" should be "access".
# the instructions ids within that iname.
ensm_buckets = {}
vng = kernel.get_var_name_generator()
@@ -1882,7 +1882,7 @@

# }}}

self.transform_loopy_cache[original_t_unit] = t_unit
self.transform_loopy_cache.store_if_not_present(original_t_unit, t_unit)

return t_unit