You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
remove buck2 from Kernel Library Selective Build (#4224) (#4249)
Summary:
Pull Request resolved: #4224
For alpha+, we need to remove all buck2 commands and buck2 dependencies from static doc and github readmes.
This diff gets rid of the buck2 from kernel lb selective build tutorial
Reviewed By: kirklandsign
Differential Revision: D59649793
fbshipit-source-id: 8c6c854d633cc36fbe34605e5a34977c519028aa
(cherry picked from commit 9aafd0f)
Co-authored-by: Songhao Jia <[email protected]>
Copy file name to clipboardExpand all lines: docs/source/kernel-library-selective-build.md
+3-55Lines changed: 3 additions & 55 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Kernel Library Selective Build
2
2
3
-
_Selective build_ is a build mode on ExecuTorch that uses model metadata to guide ExecuTorch build. This build mode contains build tool APIs available on both CMake and buck2. ExecuTorch users can use selective build APIs to build an ExecuTorch runtime binary with minimal binary size by only including operators required by models.
3
+
_Selective build_ is a build mode on ExecuTorch that uses model metadata to guide ExecuTorch build. This build mode contains build tool APIs available on CMake. ExecuTorch users can use selective build APIs to build an ExecuTorch runtime binary with minimal binary size by only including operators required by models.
4
4
5
5
This document aims to help ExecuTorch users better use selective build, by listing out available APIs, providing an overview of high level architecture and showcasing examples.
6
6
@@ -36,17 +36,11 @@ The basic flow looks like this:
36
36
37
37
## APIs
38
38
39
-
We expose build macros for CMake and Buck2, to allow users specifying op info.
40
-
41
-
On CMake:
39
+
We expose build macros for CMake, to allow users specifying op info:
0 commit comments