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 6021651 commit 71772d1Copy full SHA for 71772d1
aarch64_linux/aarch64_wheel_ci_build.py
@@ -105,6 +105,9 @@ def parse_arguments():
105
else:
106
print("build pytorch without mkldnn backend")
107
108
+ # work around to fix Raspberry pie crash
109
+ os.system(f"cd $HOME && git clone https://github.com/pytorch/builder.git")
110
+ os.system(f"cd $HOME/pytorch/third_party/ideep/mkl-dnn && patch -p1 < $HOME/builder/mkldnn_fix/aarch64-fix-default-build-flags-to-armv8-a.patch")
111
os.system(f"cd /pytorch; {build_vars} python3 setup.py bdist_wheel")
112
pytorch_wheel_name = complete_wheel("pytorch")
113
print(f"Build Compelete. Created {pytorch_wheel_name}..")
0 commit comments