-
Notifications
You must be signed in to change notification settings - Fork 607
[executorch] Refactor install_flatc.sh #606
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
Closed
Closed
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
Fixes various problems I ran into while running it on my system. - Sets up the cmake cache for flatc so it can build - Doesn't look at stderr when examining the flatc path - Runs properly even when the working directory is not at the root of the tree - Uses `echo -e` to print colors correctly - Use double quotes and braces on all variables - Add strict error and undefined var checking - Refactor as a set of functions instead of running at the top level Differential Revision: [D49897273](https://our.internmc.facebook.com/intern/diff/D49897273/) [ghstack-poisoned]
dbort
added a commit
that referenced
this pull request
Oct 4, 2023
Fixes various problems I ran into while running it on my system. - Sets up the cmake cache for flatc so it can build - Doesn't look at stderr when examining the flatc path - Runs properly even when the working directory is not at the root of the tree - Uses `echo -e` to print colors correctly - Use double quotes and braces on all variables - Add strict error and undefined var checking - Refactor as a set of functions instead of running at the top level Differential Revision: [D49897273](https://our.internmc.facebook.com/intern/diff/D49897273/) ghstack-source-id: 202829279 Pull Request resolved: #606
Fixes various problems I ran into while running it on my system. - Sets up the cmake cache for flatc so it can build - Doesn't look at stderr when examining the flatc path - Runs properly even when the working directory is not at the root of the tree - Uses `echo -e` to print colors correctly - Use double quotes and braces on all variables - Add strict error and undefined var checking - Refactor as a set of functions instead of running at the top level Differential Revision: [D49897273](https://our.internmc.facebook.com/intern/diff/D49897273/) [ghstack-poisoned]
dbort
added a commit
that referenced
this pull request
Oct 4, 2023
Pull Request resolved: #606 Fixes various problems I ran into while running it on my system. - Sets up the cmake cache for flatc so it can build - Doesn't look at stderr when examining the flatc path - Runs properly even when the working directory is not at the root of the tree - Uses `echo -e` to print colors correctly - Use double quotes and braces on all variables - Add strict error and undefined var checking - Refactor as a set of functions instead of running at the top level ghstack-source-id: 202918208 @exported-using-ghexport Differential Revision: [D49897273](https://our.internmc.facebook.com/intern/diff/D49897273/)
This pull request has been merged in 0e5ddd1. |
Gasoonjia
pushed a commit
that referenced
this pull request
Jul 30, 2024
…606) * Automatically identify cuda from nvidia-smi in install-requirements * Update README.md --------- Co-authored-by: Michael Gschwind <[email protected]>
Gasoonjia
pushed a commit
that referenced
this pull request
Jul 30, 2024
* executable README * fix title of CI workflow * markup commands in markdown * extend the markup-markdown language * Automatically identify cuda from nvidia-smi in install-requirements (#606) * Automatically identify cuda from nvidia-smi in install-requirements * Update README.md --------- Co-authored-by: Michael Gschwind <[email protected]> * Unbreak zero-temperature sampling (#599) Fixes #581. * Improve process README * [retake] Add sentencepiece tokenizer (#626) * Add sentencepiece tokenizer Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Add white space Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Handle white space: Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Handle control ids Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * More cleanup Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Lint Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Use unique_ptr Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Use a larger runner Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Debug Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Debug Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: * Cleanup * Update install_utils.sh to use python3 instead of python (#636) As titled. On some devices `python` and `python3` are pointing to different environments so good to unify them. * Fix quantization doc to specify dytpe limitation on a8w4dq (#629) Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: Co-authored-by: Kimish Patel <[email protected]> * add desktop.json (#622) * add desktop.json * add fast * remove embedding * improvements * update readme from doc branch * tab/spc * fix errors in updown language * fix errors in updown language, and [skip]: begin/end * fix errors in updown language, and [skip]: begin/end * a storied run * stories run on readme instructions does not need HF token * increase timeout * check for hang un hf_login * executable README improvements * typo * typo --------- Co-authored-by: Ian Barber <[email protected]> Co-authored-by: Scott Wolchok <[email protected]> Co-authored-by: Mengwei Liu <[email protected]> Co-authored-by: Kimish Patel <[email protected]> Co-authored-by: Scott Roy <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
CLA Signed
This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
Merged
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.
Stack from ghstack (oldest at bottom):
Fixes various problems I ran into while running it on my system.
echo -e
to print colors correctlyDifferential Revision: D49897273