-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!(//cpp): Inlining partial compilation settings since the
feature is now on by default BREAKING CHANGE: This commit changes the API for automatic fallback to inline settings regarding partial compilation in preparation for it to be turned on by default Now in the compile spec instead of a `torch_fallback` field with its associated struct, there are four new fields in the compile spec ```c++ bool require_full_compilation = true; uint64_t min_block_size = 3; std::vector<std::string> torch_executed_ops = {}; std::vector<std::string> torch_executed_modules = {}; ``` Signed-off-by: Naren Dasan <naren@narendasan.com> Signed-off-by: Naren Dasan <narens@nvidia.com>
- Loading branch information
1 parent
2a0d1c8
commit 19ecc64
Showing
4 changed files
with
68 additions
and
61 deletions.
There are no files selected for viewing
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
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
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
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