-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FAKE_REQUIRED_PACKAGES
tensorflow-intel prevent poetry installation of tensorflow-rocm
#2161
Comments
FAKE_REQUIRED_PACKAGES
tensorflow-intel prevent poetry installation of tensorflow-rocm
Hi all, |
Thanks! I also have this PR #2171 that may help |
Actually can you check to see if my PR will help with this poetry issue? Looking at it again it may not. It does fix the nightly build issue we were seeing though, but perhaps we need something else for this issue. |
Correct, unfortunately your PR doesn't fix this issue. The issue is strictly related to the |
yup, ok. thx |
Sure, meanwhile can you help me to explain to the reviewer how the |
@jayfurmanek As you can see I opened a PR (#2174) to fix that in case |
@jayfurmanek the PR was rejected due to according to the reviewer this is an issue of The reviewer suggest to change the following code in the But, in my honest opinion I think that my changes still work without change the actual rocm |
@jayfurmanek any update on this issue/PR? |
Issue type
Build/Install
Have you reproduced the bug with TensorFlow Nightly?
Yes
Source
source
TensorFlow version
2.12.0.560
Custom code
Yes
OS platform and distribution
Archlinux 6.1.38-2-lts
Mobile device
No response
Python version
3.11
Bazel version
No response
GCC/compiler version
No response
CUDA/cuDNN version
No response
GPU model and memory
AMD Radeon RX 6700 XT - gfx1031
Current behavior?
Updating
tensorflow-rocm
usingpoetry
produce a not resolvable dependency error due totensorflow-intel
"fake required package".The problem is due to the following lines:
https://github.com/ROCmSoftwarePlatform/tensorflow-upstream/blob/2612672170a29a8f6570e6c2dfdfa3d506bf2da8/tensorflow/tools/pip_package/setup.py#L168
https://github.com/ROCmSoftwarePlatform/tensorflow-upstream/blob/2612672170a29a8f6570e6c2dfdfa3d506bf2da8/tensorflow/tools/pip_package/setup.py#L171
In particular, the error is caused by the
_VERSION
. In fact, the same version oftensorflow-rocm
(2.12.0.560
) not exists intensorflow-intel
.Standalone code to reproduce the issue
Relevant log output
Possible fix
Simply truncate the version to the patch version before the FAKE_REQUIRED_PACKAGES list definition.
The text was updated successfully, but these errors were encountered: