We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2063432 commit a893391Copy full SHA for a893391
install_requirements.py
@@ -209,7 +209,7 @@ def main(args):
209
for pybind_arg in args.pybind:
210
if pybind_arg not in VALID_PYBINDS:
211
raise Exception(
212
- f"Unrecognized pybind argument {pybind_arg}; valid options are: {", ".join(VALID_PYBINDS)}"
+ f"Unrecognized pybind argument {pybind_arg}; valid options are: {', '.join(VALID_PYBINDS)}"
213
)
214
EXECUTORCH_BUILD_PYBIND = "ON"
215
CMAKE_ARGS += f" -DEXECUTORCH_BUILD_{pybind_arg.upper()}=ON"
0 commit comments