-
Notifications
You must be signed in to change notification settings - Fork 20
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
Taobench install not working as expected on Ubuntu 22.04 #67
Comments
Thanks for reporting this issue! I'm looking into this and trying to come up with a more sustainable solution than copying Removing that three lines would indeed workaround the failure, but not sure if you'll see errors like If you see the |
Summary: Fix TaoBench build and run issues (#67 and #80 on github) on Ubuntu: - Not to copy `build-deps/lib/libcrypto.so.1.1` to system lib folder - Before running TaoBench server, export environment variable `LD_LIBRARY_PATH` to benchmarks/tao_bench/build-deps/lib to make sure the server executable links the desired libcrypto library Reviewed By: ahmadelyoussef Differential Revision: D71342491 fbshipit-source-id: 0070eb92158ae223a7002777abcb4664c0bf6f24
5d1f7cf provided a workaround that explicitly exports |
Hello!
I have tried installing the Taobench benchmark a few times on a remote server running Ubuntu 22.04. Recently however, the install has been failing. It fails with the error:
error: ‘PyArray_Descr’ {aka ‘struct _PyArray_Descr’} has no member named ‘elsize’
during the folly build, and I think that is because of a NumPy dependency issue. I was able to resolve that by force installing Numpy version 1.26.4 (since the error pops up for numpy versions >= 2.0).
Once this was fixed, there were errors with OpenSSL, as the install script has this:
but
build-deps/lib/libcrypto.so.1.1
is never generated. I commented out the OpenSSL install and let it use the default OpenSSL install from Ubuntu, and it seems to have fixed everything.I was not sure if these were bugs or if I was doing anything wrong, so wanted to clarify. To reproduce the issue:
./benchpress_cli.py install tao_bench_autoscale
)The text was updated successfully, but these errors were encountered: