Summary: | science/py-tensorflow: update 2.9.1 → 2.13.1 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Lars Herschke <lhersch> | ||||||||||||
Component: | Individual Port(s) | Assignee: | freebsd-ports-bugs (Nobody) <ports-bugs> | ||||||||||||
Status: | New --- | ||||||||||||||
Severity: | Affects Some People | CC: | amzo1337, fluffy, lwhsu, uzsolt | ||||||||||||
Priority: | --- | Flags: | bugzilla:
maintainer-feedback?
(amzo1337) lhersch: maintainer-feedback- |
||||||||||||
Version: | Latest | ||||||||||||||
Hardware: | Any | ||||||||||||||
OS: | Any | ||||||||||||||
See Also: | https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278571 | ||||||||||||||
Attachments: |
|
Created attachment 251990 [details]
update to 2.13.1
The first patch was incomplete.
Created attachment 252159 [details]
update to 2.13.1
With the first patch, py-tensorflow could not be built on FreeBSD 14.1. I always got the following error.
ERROR: /wrkdirs/usr/ports/science/py-tensorflow/work-py39/tensorflow-2.13.1/tensorflow/cc/BUILD:673:22: Executing genrule //tensorflow/cc:image_ops_genrule failed: (Exit 1): bash failed: error executing command ... ld-elf.so.1: /wrkdirs/usr/ports/science/py-tensorflow/work-py39/bazel_out/510805f3beb273b7d5a810ae984312ce/execroot/org_tensorflow/bazel-out/host/bin/tensorflow/cc/ops/../../../_solib_k8/_U_S_Stensorflow_Scc_Cops_Simage_Uops_Ugen_Ucc___Utensorflow/libtensorflow_framework.so.2: Undefined symbol "_ZN4absl12lts_202301254CordC1INSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELi0EEEOT_" This is probably due to the fact that devel/abseil is built in 14.1 with llvm 18. If you build py-tensorflow with llvm 18, the error is gone. However, the build then fails under FreeBSD older than 14.1. With the current change py-tensorflow always builds with the system compiler. So I could build jet successfully under 14.1, 14.0 , 13.3 and even under 13.2 (with llvm 14!). (In reply to Lars Herschke from comment #3) Sadly, it's unable to build at all after devel/abseil: update Abseil C++ to LTS version 20240722.0 looks like bundled benchmark/gtest cannot be used with recent abseil anymore Created attachment 253911 [details]
update to 2.13.1
Here is a new patch. It contains additional adjustments for the new devel/abseil and the new devel/protobuf version.
Lars, do you want to update 2.17? (In reply to Zsolt Udvari from comment #6) This need to almost complere rewrite rules_python subpackage at least From 2.14 the build environment changes massively regarding python or perl, I don't know exactly. My knowledge of Bazel has reached its limits in this respect. Actually, I just wanted to fix the build error of the current port and version 2.13.1 turned out to be the version that worked the easiest. (In reply to Lars Herschke from comment #8) BTW. 2.13.1 builds but coredumps while init on start $ python3.11 -vv -c "import tensorflow as tf; print('TensorFlow version:', tf.version())" [skip] import 'tensorflow.python.platform.build_info' # <_frozen_importlib_external.SourceFileLoader object at 0x680907f0410> import 'tensorflow.python.platform.self_check' # <_frozen_importlib_external.SourceFileLoader object at 0x680907dbe90> # trying /usr/local/lib/python3.11/site-packages/tensorflow/python/platform/_pywrap_cpu_feature_guard.cpython-311.so # trying /usr/local/lib/python3.11/site-packages/tensorflow/python/platform/_pywrap_cpu_feature_guard.abi3.so # trying /usr/local/lib/python3.11/site-packages/tensorflow/python/platform/_pywrap_cpu_feature_guard.so Segmentation fault (core dumped) $ (In reply to Lars Herschke from comment #8) Maybe can check ArchLInux's PKGBUILD. I also get the segmentation fault . But when I build tensorflow with debug symbols, the error no longer occurs. Therefore it is probably some kind of race condition. Of course, that doesn't make it any easier to find the cause. The segmentation fault occurs as soon as _pywrap_tensorflow_internal.so or pywrap_bfloat16.so is stripped. These two files are also larger after stripping than before. If I strip with GNU strip from the binutils, llvm-strip or directly through the linker there are no problems. We may be affected by the following bug. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269568 I will provide a new patch soon, which will use the linker for stripping. Created attachment 255253 [details]
update to 2.13.1
Here is a new patch where the linker is used for stripping. In addition, a newer version of cpuinfo is now used. This now has native FreeBSD support and therefore no longer needs to be patched.
tf.version() does not work like this. You can display the version number as follows. python3.11 -c "import tensorflow as tf; print('TensorFlow version:', tf.version.VERSION)" |
Created attachment 251988 [details] update to 2.13.1