-
Notifications
You must be signed in to change notification settings - Fork 88
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
Add platform (arch) for ExecuTorch dashboard #6234
Conversation
@huydhn is attempting to deploy a commit to the Meta Open Source Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
Looks great! Thanks for improving the UX!
I'm okay with pagination. If users have specific preference we can make a request for it later. To me, as a users, I think I can efficiently zoom in to the model/backend/platform that I want to take a close look from the main page |
Address part of pytorch/executorch#7986
The historical context here is that the older schema for benchmark database didn't have a separate columns for
device
, i.e.cpu
, andarch
, i.e.x86_64
. So, they are bundle together into a single one calleddeviceArch
.This PR splits this field into
device
andarch
field behind the scene, but keeps the display name in the same format, i.e.Apple iPhone 15 (iOS 18.0)
to maintain the same UX, which allows me to add a new platform (arch) dropdown list for ExecuTorch. The list has only 3 optionsAndroid
andiOS
andAll Platforms
,and only one can be selected at a time (this is the part that fixes pytorch/executorch#7986)This also applies lint to these queries and fixes a bug in which sqlfluff doesn't recognize the configuration file at
.sqlfluff
I found that https://mui.com/x/react-data-grid/pagination/ only allows up to 100 rows before enforcing pagination. Having more requires the paid pro version.
Testing
https://torchci-git-fork-huydhn-tweak-et-dashboard-fbopensource.vercel.app/benchmark/llms?repoName=pytorch%2Fexecutorch shows a new platform dropdown list