mirror of
https://github.com/wassname/ray.git
synced 2026-08-17 11:25:34 +08:00
Visualize computation graph
This commit is contained in:
@@ -12,6 +12,10 @@ message Put {
|
||||
uint64 objref = 1; // The objref for the object that was put
|
||||
}
|
||||
|
||||
message Get {
|
||||
uint64 objref = 1; // The objref for the object that is retrieved
|
||||
}
|
||||
|
||||
// This is used internally by the scheduler. From the scheduler's perspective,
|
||||
// the submission of tasks (via SubmitTask) and the submission of puts (via
|
||||
// PutObj) look very similar, and so it is useful to be able to handle them
|
||||
@@ -19,6 +23,7 @@ message Put {
|
||||
message Operation {
|
||||
Task task = 1;
|
||||
Put put = 2;
|
||||
Get get = 4;
|
||||
uint64 creator_operationid = 3; // The id of the task that called this task or put.
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user