external_error.proto 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.

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 = "proto2";
package paddle.platform.proto;

18 19 20 21 22 23 24 25 26
// (NOTE:zhouwei): ApiType describes which kind of external third party API
// More external third party API can be added.
enum ApiType {
  CUDA = 0;
  CURAND = 1;
  CUDNN = 2;
  CUBLAS = 3;
  CUSOLVER = 4;
  NCCL = 5;
27
  CUFFT = 6;
28
  CU = 7;
Z
zhangkaihuo 已提交
29
  CUSPARSE = 8;
30 31
}

32
message MessageDesc {
33 34
  // Indicates the code of error
  required int32 code = 1;
35
  // Indicates the message of error
36
  required string message = 2;
37 38 39
}

message AllMessageDesc {
40 41
  // Indicates which kind of third-party API
  required ApiType type = 1;
42
  // Error messages of different errortype
43
  repeated MessageDesc messages = 2;
44 45
}

46 47 48
message ExternalErrorDesc {
  // Error messages of different kind of external third party API
  repeated AllMessageDesc errors = 1;
Z
zhangkaihuo 已提交
49
}