You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several code examples (e.g., this one) using TensorFlow crash due to thread limits imposed by our jail.
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
The root cause is libeigen (a C++ matrix calculation library) used by TensorFlow which reads OMP_NUM_THREADS environment variable to initialize its thread pool.
Several code examples (e.g., this one) using TensorFlow crash due to thread limits imposed by our jail.
The root cause is libeigen (a C++ matrix calculation library) used by TensorFlow which reads
OMP_NUM_THREADS
environment variable to initialize its thread pool.ref) http://eigen.tuxfamily.org/dox/TopicMultiThreading.html
The text was updated successfully, but these errors were encountered: