-
Notifications
You must be signed in to change notification settings - Fork 77
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
[Op] Enhanced Einsum #283
Closed
Closed
[Op] Enhanced Einsum #283
Conversation
This file contains 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
MLC local ci setup.
This PR adds CI for Windows and macOS building, which may take 90-100 mins. Co-authored-by: Siyuan Feng <Hzfengsy@sjtu.edu.cn>
…S BYOC (#15467)" This reverts commit 38e2b88.
Google Pixel phones load the OpenCL symbols in a bit of a roundabout way. This is the way google does it in TensorFlow-lite. https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/delegates/gpu/cl/opencl_wrapper.cc#L75 ![Screenshot_20230809-231501.png](https://github.com/mlc-ai/relax/assets/3462438/21015bb4-6593-426a-850f-4867bd0a54a3) ![Screenshot_20230809-231758.png](https://github.com/mlc-ai/relax/assets/3462438/501bfd07-2491-4176-813d-080a8138dfde)
LeshengJin
changed the title
Einsum
[Op] Einsum with customized compute function and combine function
Aug 13, 2023
LeshengJin
changed the title
[Op] Einsum with customized compute function and combine function
[Op] Enhanced Einsum
Aug 13, 2023
You may take a look at this: https://einops.rocks/ |
junrushao
force-pushed
the
mlc
branch
5 times, most recently
from
September 17, 2023 19:07
eab8dd4
to
77bcc11
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
February 20, 2024 14:55
f8b2ff1
to
59c3556
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
March 4, 2024 22:24
f178458
to
4b79ceb
Compare
MasterJH5574
force-pushed
the
mlc
branch
4 times, most recently
from
March 17, 2024 02:08
d20be8b
to
c06ec1f
Compare
MasterJH5574
force-pushed
the
mlc
branch
3 times, most recently
from
March 24, 2024 00:36
1ce4a34
to
dcdd541
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
April 12, 2024 21:11
0c81069
to
ae057a2
Compare
MasterJH5574
force-pushed
the
mlc
branch
3 times, most recently
from
May 15, 2024 05:49
597664a
to
ce58d63
Compare
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.
Typically, Einsum only performs element-wise multiplication and summation across indices. This pr expands Einsum's capabilities:
Tuple(tensor)
outputs.This enhanced Einsum could represents more complex computations within a few lines of code. For example,
sum(x), sum(x^2)
sum(x), prod(x)