Browse Source

!6040 [MS][LITE][Develop]add black box op schema

Merge pull request !6040 from mengyuanli/add_black_box
tags/v1.0.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
097045c72d
2 changed files with 8 additions and 0 deletions
  1. +1
    -0
      mindspore/lite/schema/model.fbs
  2. +7
    -0
      mindspore/lite/schema/ops.fbs

+ 1
- 0
mindspore/lite/schema/model.fbs View File

@@ -198,6 +198,7 @@ union PrimitiveType {
ToFormat,
Proposal,
Custom,
BlackBox,
}

enum QuantType: int {


+ 7
- 0
mindspore/lite/schema/ops.fbs View File

@@ -917,3 +917,10 @@ table Proposal {
table Custom {
custom : [ubyte];
}


table BlackBox {
id : string;
size : int;
address : [ubyte];
}

Loading…
Cancel
Save