El 9/4/25 a las 13:13, Andrius Merkys escribió:
Should we drop autopkgtest-pkg-pybuild and "wrap" it in debian/tests,
where we can still decide to build the package or not depending
on the test architecture?
Let's do this. Thanks a lot for working on pytorch-geometric!
Not so fast!
Please take a look at
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1102472
The real solution might be in src:python3-torch, I was looking at
dropping the following lines:
#
https://stackoverflow.com/questions/65966969/why-does-march-native-not-work-on-apple-m1
# `-march=native` is unrecognized option on M1
if not config.is_fbcode():
if platform.machine() == "ppc64le":
cflags.append("mcpu=native")
else:
cflags.append("march=native")
from torch/_inductor/cpp_builder.py
Thanks.