1// This is used for convolution logging. Also see
2// tensorflow/core/protobuf/autotuing.h
3syntax = "proto3";
4
5package tensorflow;
6
7import "tensorflow/core/framework/node_def.proto";
8import "tensorflow/core/framework/tensor.proto";
9
10message ConvNodeDef {
11  NodeDef conv = 1;
12  TensorProto input = 2;
13  TensorProto filter = 3;
14  TensorProto output = 4;
15  TensorProto bias = 5;
16  oneof side_input_oneof {
17    TensorProto side_input = 6;
18  }
19}
20