Add Triangle Multiplicative Update problem#66
Open
josusanmartin wants to merge 1 commit into
Open
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
triangle-multiplicative-updateproblem based on GPU MODE's (Mini) Competition new problems! #3: AlphaFold's Triangle Multiplicative Updateoutput[b,i,j,h] = sum_k left[b,i,k,h] * mask[b,i,k] * right[b,j,k,h] * mask[b,j,k]Source inspiration: https://stormy-sailor-96a.notion.site/GPU-MODE-Mini-Competition-3-AlphaFold-s-Triangle-Multiplicative-Update-207221cc2ffa8034b3eddff1d898dc14
Validation
python3 -m py_compile problems/triangle-multiplicative-update/def.py problems/triangle-multiplicative-update/torch.pyPYTHONPATH=/home/josu/dev/tensara-selfhost/platform/engineand sanity-checked parameters, test cases, extra params, and FLOP countNote: I did not run CUDA correctness locally because this shell does not expose a CUDA runtime.