_resampler.so: undefined symbol
See original GitHub issuefaced this error while executing the example code
import sonnet as snt
import tensorflow as tf
snt.resampler(tf.constant([0.]), tf.constant([0.]))
recompiling the tensorflow to 1.1.0-rc2 and replacing the downloaded sonnet/tensorflow with this one solved the problem 😃
Issue Analytics
- State:
- Created 6 years ago
- Reactions:9
- Comments:11
Top Results From Across the Web
Error when running C++ libraries in iOS Xcode Project
Undefined symbols for architecture x86_64: "_mpg123_scan", referenced from: MP3InputStream::open(std::__1::basic_string<char, ...
Read more >Build fails on debian stretch: run/libspeexresampler.a(resample.c.o ...
Build fails on debian stretch: run/libspeexresampler.a(resample.c.o): undefined reference to symbol 'floor@@GLIBC_2.2.5'. This issue was migrated from bug ...
Read more >Product "Undefined symbol" in Band Maths Expression - s2tbx ...
Hello I want to run an expression in Band Maths however I receive an error for one of the bands "Undefined symbol '$10.B10'...
Read more >Tensorflow-io issue - General Discussion
Hi, am running YAMNet for environmental sound classification, and I am getting an error today that I don't get two days ago, ...
Read more >Using rnn_vad in my project - Google Groups
modules/audio_processing/agc2/rnn_vad/rnn.cc:106: undefined reference to `webrtc::PushSincResampler::Resample(float const*, unsigned long, float*, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
~I’m also getting this as per @thesilencelies. Tried tensorflow 1.1.0, then 1.1.0-rc2 when that didn’t work. In both cases
ldd
on the produced_resampler.so
shows:~~ie. it doesn’t look as if the op library is being linked to anything tensorflow related? Using bazel 0.4.5 on ubuntu 17.10 if it helps.~
Forget about this.
Fixed it by building Sonnet with
I believe the issue was that Tensorflow was being built with GCC 4.x while Sonnet was using the system default which is >= 5.
@PFCM I f****** love you!