forked from huawei/mindspore2022
82 lines
1.7 KiB
Protocol Buffer
82 lines
1.7 KiB
Protocol Buffer
/**
|
|
* Copyright 2019 Huawei Technologies Co., Ltd
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
syntax = "proto3";
|
|
|
|
package debugger;
|
|
|
|
import "debug_graph.proto";
|
|
|
|
service EventListener {
|
|
rpc WaitCMD (Metadata) returns (EventReply) {};
|
|
rpc SendMetadata (Metadata) returns (EventReply) {};
|
|
rpc SendGraph (GraphProto) returns (EventReply) {};
|
|
rpc SendTensors (stream TensorProto) returns (EventReply) {};
|
|
rpc SendWatchpointHits (stream WatchpointHit) returns (EventReply) {};
|
|
}
|
|
|
|
message Metadata {
|
|
string device_name = 1;
|
|
int32 cur_step = 2;
|
|
}
|
|
|
|
message EventReply {
|
|
enum Status {
|
|
OK = 0;
|
|
FAILED = 1;
|
|
PENDING = 2;
|
|
}
|
|
|
|
Status status = 1;
|
|
|
|
oneof cmd {
|
|
bool exit = 2;
|
|
int32 run_cmd = 3;
|
|
SetCMD set_cmd = 4;
|
|
ViewCMD view_cmd = 5;
|
|
}
|
|
}
|
|
|
|
message SetCMD {
|
|
repeated WatchNode watch_nodes = 1;
|
|
WatchCondition watch_condition = 2;
|
|
bool delete = 3;
|
|
int32 id = 4;
|
|
}
|
|
|
|
message ViewCMD {
|
|
repeated TensorProto tensors = 1;
|
|
}
|
|
|
|
message WatchCondition {
|
|
enum Condition {
|
|
nan = 0;
|
|
inf = 1;
|
|
}
|
|
Condition condition = 1;
|
|
}
|
|
|
|
message WatchNode {
|
|
string node_name = 1;
|
|
string node_type = 2;
|
|
}
|
|
|
|
message WatchpointHit {
|
|
TensorProto tensor = 1;
|
|
WatchCondition watch_condition = 2;
|
|
int32 id = 3;
|
|
}
|