MCPcopy
hub / github.com/ray-project/ray / dump

Method dump

python/ray/cloudpickle/cloudpickle.py:1311–1316  ·  view source on GitHub ↗
(self, obj)

Source from the content-addressed store, hash-verified

1309 return code, base_globals, None, None, closure
1310
1311 def dump(self, obj):
1312 try:
1313 return super().dump(obj)
1314 except RecursionError as e:
1315 msg = "Could not pickle object as excessively deep recursion required."
1316 raise pickle.PicklingError(msg) from e
1317
1318 def __init__(self, file, protocol=None, buffer_callback=None):
1319 if protocol is None:

Callers 15

dumpsFunction · 0.95
_save_window_resultFunction · 0.45
report_resultsFunction · 0.45
configFunction · 0.45
statusFunction · 0.45
controller_healthFunction · 0.45
buildFunction · 0.45
arithmetic_configMethod · 0.45
save_checkpointMethod · 0.45

Calls

no outgoing calls

Tested by 15

arithmetic_configMethod · 0.36
save_checkpointMethod · 0.36
function_trainableFunction · 0.36
timed_tune_runFunction · 0.36
save_checkpointMethod · 0.36
save_checkpointMethod · 0.36
train_fn_syncMethod · 0.36
save_checkpointMethod · 0.36
save_checkpointMethod · 0.36
MockTrainingFuncMethod · 0.36