-
Notifications
You must be signed in to change notification settings - Fork 148
cuequivariance support in pixi (including aarch64) #181
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
Merged
Merged
Changes from 29 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
ab94e60
Modernize conda environment (#34)
sdvillal ce70ebb
fix linter problems
jandom 9b1749c
add pre-commit
jandom 6fbef74
Merge branch 'main' into pixi-beta
jandom 57736cd
Merge branch 'public-main' into pixi-beta
jandom 784502b
Merge branch 'public-main' into pixi-beta
jandom f696d6c
add pixi.excalidraw to docs
jandom 4ce0467
Merge branch 'public-main' into pixi-beta
jandom c101a86
remove blackwell build instructions (obsolete)
jandom cf4bfb6
update docs to recommend pixi
jandom 4e36782
better docs on pixi
jandom 48e06e3
update pixi.lock
jandom 8a4a26b
docker build and tests for pixi
jandom 3f9ed35
Merge branch 'main' into pixi-beta
jandom 888f070
set a sensible 2mb default
jandom 39ddce9
more context manager plus dirty dataclass
jandom 07d3454
unit tests
jandom 5e42337
Merge branch 'public-main' into pixi-beta
jandom 8a745e9
more linting
jandom ba24b95
missed a dep: regenerate pixi.lock
jandom 68e743e
Merge branch 'main' into pixi-beta
jandom feeaacd
remove duplicate projects
jandom a6df9f7
Merge branch 'main' into pixi-beta
jandom ba83d3e
review: comments from Jennifer
jandom bc7badc
Merge branch 'public-main' into pixi-beta
jandom 299e596
update pixi.lock
jandom eb1f9e4
cuequivariance support in pixi
jandom 2fa2cfc
Merge branch 'public-main' into pixi-beta-cuequivariance
jandom a501be1
update documentation for cuequivariance for kernels
jnwei cc57a21
Merge branch 'public-main' into pixi-beta-cuequivariance
jandom 3aa0a10
regenerate pixi.lock
jandom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@christinaflo this migrates how we call a recent cueq - does it look sane? (it obviously doesn't :D)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is OK. IMO we're not going to get much cleaner without having separate functions depending on the number of dimensions in the input.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well actually it's the right way to fix chunking when BS>1. But we do want to avoid expand() on bias for BS=1 (it becomes huge and we do allocate real memory for it on contiguous() call), so I suggest adding a few conditionals to process BS=1 case just like before :
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@christinaflo : I have tested that code with BS=1 and BS=2 using test_kernels, and it worked for me:
(actually, triton_kernels also worked with BS>1, with minor accuracy error).