Lint Cython files (#4097)

This commit is contained in:
Philipp Moritz
2019-02-20 22:29:25 -08:00
committed by Robert Nishihara
parent acf4d53b55
commit bcd5af78c7
11 changed files with 239 additions and 129 deletions
+93 -54
View File
@@ -3,6 +3,8 @@
# cython: embedsignature = True
# cython: language_level = 3
import numpy
from libc.stdint cimport int32_t, int64_t
from libcpp cimport bool as c_bool
from libcpp.memory cimport unique_ptr
@@ -12,11 +14,6 @@ from libcpp.unordered_map cimport unordered_map
from libcpp.vector cimport vector as c_vector
from cython.operator import dereference, postincrement
cimport cpython
include "includes/unique_ids.pxi"
include "includes/ray_config.pxi"
include "includes/task.pxi"
from ray.includes.common cimport (
CLanguage,
@@ -40,12 +37,17 @@ from ray.includes.task cimport CTaskSpecification
from ray.includes.ray_config cimport RayConfig
from ray.utils import decode
cimport cpython
include "includes/unique_ids.pxi"
include "includes/ray_config.pxi"
include "includes/task.pxi"
if cpython.PY_MAJOR_VERSION >= 3:
import pickle
else:
import cPickle as pickle
import numpy
cdef int check_status(const CRayStatus& status) nogil except -1:
@@ -83,7 +85,8 @@ cdef VectorToObjectIDs(c_vector[CObjectID] object_ids):
def compute_put_id(TaskID task_id, int64_t put_index):
if put_index < 1 or put_index > kMaxTaskPuts:
raise ValueError("The range of 'put_index' should be [1, %d]" % kMaxTaskPuts)
raise ValueError("The range of 'put_index' should be [1, %d]"
% kMaxTaskPuts)
return ObjectID.from_native(ComputePutId(task_id.data, put_index))
@@ -97,42 +100,53 @@ cdef c_bool is_simple_value(value, int *num_elements_contained):
if num_elements_contained[0] >= RayConfig.instance().num_elements_limit():
return False
if (cpython.PyInt_Check(value) or cpython.PyLong_Check(value) or value is False or
value is True or cpython.PyFloat_Check(value) or value is None):
if (cpython.PyInt_Check(value) or cpython.PyLong_Check(value) or
value is False or value is True or cpython.PyFloat_Check(value) or
value is None):
return True
if cpython.PyBytes_CheckExact(value):
num_elements_contained[0] += cpython.PyBytes_Size(value)
return num_elements_contained[0] < RayConfig.instance().num_elements_limit()
return (num_elements_contained[0] <
RayConfig.instance().num_elements_limit())
if cpython.PyUnicode_CheckExact(value):
num_elements_contained[0] += cpython.PyUnicode_GET_SIZE(value)
return num_elements_contained[0] < RayConfig.instance().num_elements_limit()
return (num_elements_contained[0] <
RayConfig.instance().num_elements_limit())
if cpython.PyList_CheckExact(value) and cpython.PyList_Size(value) < RayConfig.instance().size_limit():
if (cpython.PyList_CheckExact(value) and
cpython.PyList_Size(value) < RayConfig.instance().size_limit()):
for item in value:
if not is_simple_value(item, num_elements_contained):
return False
return num_elements_contained[0] < RayConfig.instance().num_elements_limit()
return (num_elements_contained[0] <
RayConfig.instance().num_elements_limit())
if cpython.PyDict_CheckExact(value) and cpython.PyDict_Size(value) < RayConfig.instance().size_limit():
if (cpython.PyDict_CheckExact(value) and
cpython.PyDict_Size(value) < RayConfig.instance().size_limit()):
# TODO(suquark): Using "items" in Python2 is not very efficient.
for k, v in value.items():
if not (is_simple_value(k, num_elements_contained) and is_simple_value(v, num_elements_contained)):
if not (is_simple_value(k, num_elements_contained) and
is_simple_value(v, num_elements_contained)):
return False
return num_elements_contained[0] < RayConfig.instance().num_elements_limit()
return (num_elements_contained[0] <
RayConfig.instance().num_elements_limit())
if cpython.PyTuple_CheckExact(value) and cpython.PyTuple_Size(value) < RayConfig.instance().size_limit():
if (cpython.PyTuple_CheckExact(value) and
cpython.PyTuple_Size(value) < RayConfig.instance().size_limit()):
for item in value:
if not is_simple_value(item, num_elements_contained):
return False
return num_elements_contained[0] < RayConfig.instance().num_elements_limit()
return (num_elements_contained[0] <
RayConfig.instance().num_elements_limit())
if isinstance(value, numpy.ndarray):
if value.dtype == "O":
return False
num_elements_contained[0] += value.nbytes
return num_elements_contained[0] < RayConfig.instance().num_elements_limit()
return (num_elements_contained[0] <
RayConfig.instance().num_elements_limit())
return False
@@ -140,12 +154,12 @@ cdef c_bool is_simple_value(value, int *num_elements_contained):
def check_simple_value(value):
"""Check if value is simple enough to be send by value.
This method checks if a Python object is sufficiently simple that it can be
serialized and passed by value as an argument to a task (without being put in
the object store). The details of which objects are sufficiently simple are
defined by this method and are not particularly important. But for
performance reasons, it is better to place "small" objects in the task itself
and "large" objects in the object store.
This method checks if a Python object is sufficiently simple that it can
be serialized and passed by value as an argument to a task (without being
put in the object store). The details of which objects are sufficiently
simple are defined by this method and are not particularly important.
But for performance reasons, it is better to place "small" objects in
the task itself and "large" objects in the object store.
Args:
value: Python object that should be checked.
@@ -160,6 +174,7 @@ def check_simple_value(value):
cdef class Language:
cdef CLanguage lang
def __cinit__(self, int32_t lang):
self.lang = <CLanguage>lang
@@ -168,7 +183,8 @@ cdef class Language:
return Language(<int32_t>lang)
def __eq__(self, other):
return isinstance(other, Language) and (<int32_t>self.lang) == (<int32_t>other.lang)
return (isinstance(other, Language) and
(<int32_t>self.lang) == (<int32_t>other.lang))
def __repr__(self):
if <int32_t>self.lang == <int32_t>LANGUAGE_PYTHON:
@@ -187,7 +203,7 @@ cdef Language LANG_CPP = Language.from_native(LANGUAGE_CPP)
cdef Language LANG_JAVA = Language.from_native(LANGUAGE_JAVA)
cdef unordered_map[c_string, double] resource_map_from_python_dict(resource_map):
cdef unordered_map[c_string, double] resource_map_from_dict(resource_map):
cdef:
unordered_map[c_string, double] out
c_string resource_name
@@ -200,20 +216,25 @@ cdef unordered_map[c_string, double] resource_map_from_python_dict(resource_map)
cdef class RayletClient:
cdef unique_ptr[CRayletClient] client
def __cinit__(self, raylet_socket,
ClientID client_id,
c_bool is_worker,
DriverID driver_id):
# We know that we are using Python, so just skip the language parameter.
# We know that we are using Python, so just skip the language
# parameter.
# TODO(suquark): Should we allow unicode chars in "raylet_socket"?
self.client.reset(new CRayletClient(raylet_socket.encode("ascii"), client_id.data,
is_worker, driver_id.data, LANGUAGE_PYTHON))
self.client.reset(new CRayletClient(
raylet_socket.encode("ascii"), client_id.data, is_worker,
driver_id.data, LANGUAGE_PYTHON))
def disconnect(self):
check_status(self.client.get().Disconnect())
def submit_task(self, Task task_spec):
check_status(self.client.get().SubmitTask(task_spec.execution_dependencies.get()[0], task_spec.task_spec.get()[0]))
check_status(self.client.get().SubmitTask(
task_spec.execution_dependencies.get()[0],
task_spec.task_spec.get()[0]))
def get_task(self):
cdef:
@@ -227,9 +248,11 @@ cdef class RayletClient:
check_status(self.client.get().TaskDone())
def fetch_or_reconstruct(self, object_ids,
c_bool fetch_only, TaskID current_task_id=TaskID.nil()):
c_bool fetch_only,
TaskID current_task_id=TaskID.nil()):
cdef c_vector[CObjectID] fetch_ids = ObjectIDsToVector(object_ids)
check_status(self.client.get().FetchOrReconstruct(fetch_ids, fetch_only, current_task_id.data))
check_status(self.client.get().FetchOrReconstruct(
fetch_ids, fetch_only, current_task_id.data))
def notify_unblocked(self, TaskID current_task_id):
check_status(self.client.get().NotifyUnblocked(current_task_id.data))
@@ -240,14 +263,19 @@ cdef class RayletClient:
WaitResultPair result
c_vector[CObjectID] wait_ids
wait_ids = ObjectIDsToVector(object_ids)
check_status(self.client.get().Wait(wait_ids, num_returns, timeout_milliseconds,
wait_local, current_task_id.data, &result))
return VectorToObjectIDs(result.first), VectorToObjectIDs(result.second)
check_status(self.client.get().Wait(wait_ids, num_returns,
timeout_milliseconds, wait_local,
current_task_id.data, &result))
return (VectorToObjectIDs(result.first),
VectorToObjectIDs(result.second))
def resource_ids(self):
cdef:
ResourceMappingType resource_mapping = self.client.get().GetResourceIDs()
unordered_map[c_string, c_vector[pair[int64_t, double]]].iterator iterator = resource_mapping.begin()
ResourceMappingType resource_mapping = (
self.client.get().GetResourceIDs())
unordered_map[
c_string, c_vector[pair[int64_t, double]]
].iterator iterator = resource_mapping.begin()
c_vector[pair[int64_t, double]] c_value
resources_dict = {}
while iterator != resource_mapping.end():
@@ -255,7 +283,8 @@ cdef class RayletClient:
c_value = dereference(iterator).second
ids_and_fractions = []
for i in range(c_value.size()):
ids_and_fractions.append((c_value[i].first, c_value[i].second))
ids_and_fractions.append(
(c_value[i].first, c_value[i].second))
resources_dict[key] = ids_and_fractions
postincrement(iterator)
return resources_dict
@@ -284,15 +313,18 @@ cdef class RayletClient:
for py_profile_event in profile_data:
profile_event = new GCSProfileEventT()
if not isinstance(py_profile_event, dict):
raise TypeError("Incorrect type for a profile event. Expected dict instead of '%s'" % str(type(py_profile_event)))
# TODO(rkn): If the dictionary is formatted incorrectly, that could lead
# to errors. E.g., if any of the strings are empty, that will cause
# segfaults in the node manager.
raise TypeError(
"Incorrect type for a profile event. Expected dict "
"instead of '%s'" % str(type(py_profile_event)))
# TODO(rkn): If the dictionary is formatted incorrectly, that
# could lead to errors. E.g., if any of the strings are empty,
# that will cause segfaults in the node manager.
for key_string, event_data in py_profile_event.items():
if key_string == "event_type":
profile_event.event_type = event_data.encode("ascii")
if profile_event.event_type.length() == 0:
raise ValueError("'event_type' should not be a null string.")
raise ValueError(
"'event_type' should not be a null string.")
elif key_string == "start_time":
profile_event.start_time = float(event_data)
elif key_string == "end_time":
@@ -300,13 +332,17 @@ cdef class RayletClient:
elif key_string == "extra_data":
profile_event.extra_data = event_data.encode("ascii")
if profile_event.extra_data.length() == 0:
raise ValueError("'extra_data' should not be a null string.")
raise ValueError(
"'extra_data' should not be a null string.")
else:
raise ValueError("Unknown profile event key '%s'" % key_string)
# Note that profile_info.profile_events is a vector of unique pointers, so
# profile_event will be deallocated when profile_info goes out of scope.
# "emplace_back" of vector has not been supported by Cython
profile_info.profile_events.push_back(unique_ptr[GCSProfileEventT](profile_event))
raise ValueError(
"Unknown profile event key '%s'" % key_string)
# Note that profile_info.profile_events is a vector of unique
# pointers, so profile_event will be deallocated when profile_info
# goes out of scope. "emplace_back" of vector has not been
# supported by Cython
profile_info.profile_events.push_back(
unique_ptr[GCSProfileEventT](profile_event))
check_status(self.client.get().PushProfileEvents(profile_info))
@@ -316,11 +352,14 @@ cdef class RayletClient:
def prepare_actor_checkpoint(self, ActorID actor_id):
cdef CActorCheckpointID checkpoint_id
check_status(self.client.get().PrepareActorCheckpoint(actor_id.data, checkpoint_id))
return ObjectID.from_native(checkpoint_id);
check_status(self.client.get().PrepareActorCheckpoint(
actor_id.data, checkpoint_id))
return ObjectID.from_native(checkpoint_id)
def notify_actor_resumed_from_checkpoint(self, ActorID actor_id, ActorCheckpointID checkpoint_id):
check_status(self.client.get().NotifyActorResumedFromCheckpoint(actor_id.data, checkpoint_id.data))
def notify_actor_resumed_from_checkpoint(self, ActorID actor_id,
ActorCheckpointID checkpoint_id):
check_status(self.client.get().NotifyActorResumedFromCheckpoint(
actor_id.data, checkpoint_id.data))
@property
def language(self):