Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_quantization
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_quantization
Commits
b3e077db
Commit
b3e077db
authored
7 months ago
by
Benjamin Halimi
Browse files
Options
Downloads
Patches
Plain Diff
operator renaming (2D suffix)
parent
3c5ca20d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/aidge/quantization/PTQ/PTQ.hpp
+2
-2
2 additions, 2 deletions
include/aidge/quantization/PTQ/PTQ.hpp
with
2 additions
and
2 deletions
include/aidge/quantization/PTQ/PTQ.hpp
+
2
−
2
View file @
b3e077db
...
@@ -26,12 +26,12 @@ namespace Aidge {
...
@@ -26,12 +26,12 @@ namespace Aidge {
/**
/**
* @brief Set of the types of the nodes which contain affine transforms (that is Y = A.X + B)
* @brief Set of the types of the nodes which contain affine transforms (that is Y = A.X + B)
*/
*/
static
const
std
::
set
<
std
::
string
>
affineNodeTypes
({
"FC"
,
"Conv"
,
"ConvDepthWise"
,
"PaddedConv"
,
"PaddedConvDepthWise"
});
static
const
std
::
set
<
std
::
string
>
affineNodeTypes
({
"FC"
,
"Conv
2D
"
,
"ConvDepthWise
2D
"
,
"PaddedConv
2D
"
,
"PaddedConvDepthWise
2D
"
});
/**
/**
* @brief Set of the types of the nodes which does not affect the PTQ process
* @brief Set of the types of the nodes which does not affect the PTQ process
*/
*/
static
const
std
::
set
<
std
::
string
>
seamlessNodeTypes
({
"Pad"
,
"MaxPooling"
,
"AvgPooling"
,
"PaddedMaxPooling"
,
"PaddedAvgPooling"
,
"GlobalAveragePooling"
,
"Reshape"
,
"Transpose"
,
"Gather"
});
static
const
std
::
set
<
std
::
string
>
seamlessNodeTypes
({
"Pad
2D
"
,
"MaxPooling
2D
"
,
"AvgPooling
2D
"
,
"PaddedMaxPooling
2D
"
,
"PaddedAvgPooling
2D
"
,
"GlobalAveragePooling"
,
"Reshape"
,
"Transpose"
,
"Gather"
});
/**
/**
* @brief Set of the types of the nodes that merge multiple branches into one
* @brief Set of the types of the nodes that merge multiple branches into one
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment