From 30da6c7d0697fa1ae315174fcf01b3d16abb18c6 Mon Sep 17 00:00:00 2001 From: zrphercule Date: Wed, 27 Mar 2019 11:11:01 -0700 Subject: [PATCH] Add qtensors in caffe2 protobuf argument (#18486) Summary: We are about to merge onnxifi quantization support soon. Before that, I would like to merge this diff seperately to make sure it doesnt break anything. Pull Request resolved: https://github.com/pytorch/pytorch/pull/18486 Reviewed By: bddppq, houseroad Differential Revision: D14626419 Pulled By: yinghai fbshipit-source-id: 504c1eae60be1e629203267b59defb8b69d82c0a --- caffe2/proto/caffe2.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/caffe2/proto/caffe2.proto b/caffe2/proto/caffe2.proto index ae15521..2b079de 100644 --- a/caffe2/proto/caffe2.proto +++ b/caffe2/proto/caffe2.proto @@ -163,6 +163,7 @@ message Argument { repeated bytes strings = 7; repeated TensorProto tensors = 11; repeated NetDef nets = 9; + repeated QTensorProto qtensors = 12; } // DeviceType that Caffe2 currently supports. -- 2.7.4