mirror of
https://github.com/wassname/ray.git
synced 2026-07-06 05:16:30 +08:00
e0867c8845
* 4 space indentation for actor.py. * 4 space indentation for worker.py. * 4 space indentation for more files. * 4 space indentation for some test files. * Check indentation in Travis. * 4 space indentation for some rl files. * Fix failure test. * Fix multi_node_test. * 4 space indentation for more files. * 4 space indentation for remaining files. * Fixes.
42 lines
1.6 KiB
Python
42 lines
1.6 KiB
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
# See https://github.com/ray-project/ray/issues/131.
|
|
helpful_message = """
|
|
|
|
If you are using Anaconda, try fixing this problem by running:
|
|
|
|
conda install libgcc
|
|
"""
|
|
|
|
__all__ = ["deserialize_list", "numbuf_error",
|
|
"numbuf_plasma_object_exists_error", "read_from_buffer",
|
|
"register_callbacks", "retrieve_list", "serialize_list",
|
|
"store_list", "write_to_buffer"]
|
|
|
|
try:
|
|
from ray.core.src.numbuf.libnumbuf import (
|
|
deserialize_list, numbuf_error, numbuf_plasma_object_exists_error,
|
|
read_from_buffer, register_callbacks, retrieve_list, serialize_list,
|
|
store_list, write_to_buffer)
|
|
except ImportError as e:
|
|
if ((hasattr(e, "msg") and isinstance(e.msg, str) and
|
|
("libstdc++" in e.msg or "CXX" in e.msg))):
|
|
# This code path should be taken with Python 3.
|
|
e.msg += helpful_message
|
|
elif (hasattr(e, "message") and isinstance(e.message, str) and
|
|
("libstdc++" in e.message or "CXX" in e.message)):
|
|
# This code path should be taken with Python 2.
|
|
condition = (hasattr(e, "args") and isinstance(e.args, tuple) and
|
|
len(e.args) == 1 and isinstance(e.args[0], str))
|
|
if condition:
|
|
e.args = (e.args[0] + helpful_message,)
|
|
else:
|
|
if not hasattr(e, "args"):
|
|
e.args = ()
|
|
elif not isinstance(e.args, tuple):
|
|
e.args = (e.args,)
|
|
e.args += (helpful_message,)
|
|
raise
|