Skip to content

Commit

Permalink
Update supergroups and norm layer naming (#3813)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Tuttle <[email protected]>
  • Loading branch information
quic-mtuttle authored Feb 14, 2025
1 parent 10dbebf commit de5c4b5
Show file tree
Hide file tree
Showing 7 changed files with 117 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["ConvTranspose", "Relu"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@
{
"per_channel_quantization": "False"
},
"LayerNormalization":
{
"per_channel_quantization": "False"
},
"BatchNormalization":
{
"per_channel_quantization": "False",
Expand Down Expand Up @@ -176,6 +180,9 @@
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["ConvTranspose", "Relu"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@
{
"per_channel_quantization": "False"
},
"LayerNormalization":
{
"per_channel_quantization": "False"
},
"BatchNormalization":
{
"per_channel_quantization": "False",
Expand Down Expand Up @@ -176,6 +180,9 @@
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["ConvTranspose", "Relu"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,16 @@
}
}
},
"GroupNormalization":
{
"per_channel_quantization": "False",
"params": {
"bias":
{
"is_quantized": "True"
}
}
},
"LayerNorm":
{
"per_channel_quantization": "False",
Expand All @@ -106,6 +116,15 @@
}
}
},
"LayerNormalization":
{
"per_channel_quantization": "False",
"params": {
"weight": {
"is_symmetric": "False"
}
}
},
"BatchNormalization":
{
"per_channel_quantization": "False",
Expand Down Expand Up @@ -217,6 +236,12 @@
},
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "PRelu"]
},
{
"op_list": ["Conv", "Clip"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@
}
}
},
"GroupNormalization":
{
"per_channel_quantization": "False",
"params": {
"bias":
{
"is_quantized": "True"
}
}
},
"LayerNorm":
{
"per_channel_quantization": "False",
Expand All @@ -110,6 +120,15 @@
}
}
},
"LayerNormalization":
{
"per_channel_quantization": "False",
"params": {
"weight": {
"is_symmetric": "False"
}
}
},
"BatchNormalization":
{
"per_channel_quantization": "False",
Expand Down Expand Up @@ -217,6 +236,12 @@
},
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "PRelu"]
},
{
"op_list": ["Conv", "Clip"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@
}
}
},
"GroupNormalization":
{
"per_channel_quantization": "False",
"params": {
"bias":
{
"is_quantized": "True"
}
}
},
"LayerNorm":
{
"per_channel_quantization": "False",
Expand All @@ -110,6 +120,15 @@
}
}
},
"LayerNormalization":
{
"per_channel_quantization": "False",
"params": {
"weight": {
"is_symmetric": "False"
}
}
},
"BatchNormalization":
{
"per_channel_quantization": "False",
Expand Down Expand Up @@ -217,6 +236,12 @@
},
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "PRelu"]
},
{
"op_list": ["Conv", "Clip"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@
}
}
},
"GroupNormalization":
{
"per_channel_quantization": "False",
"params": {
"bias":
{
"is_quantized": "True"
}
}
},
"LayerNorm":
{
"per_channel_quantization": "False",
Expand All @@ -110,6 +120,15 @@
}
}
},
"LayerNormalization":
{
"per_channel_quantization": "False",
"params": {
"weight": {
"is_symmetric": "False"
}
}
},
"BatchNormalization":
{
"per_channel_quantization": "False",
Expand Down Expand Up @@ -217,6 +236,12 @@
},
{
"op_list": ["Conv", "BatchNormalization", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "Relu"]
},
{
"op_list": ["Conv", "Transpose", "PRelu"]
},
{
"op_list": ["Conv", "Clip"]
Expand Down

0 comments on commit de5c4b5

Please sign in to comment.