Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jacob Strom
VVCSoftware_VTM
Commits
42c0e9d6
Commit
42c0e9d6
authored
1 year ago
by
Franck Galpin
Committed by
Zhihuang Xie
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
set default dump parameters aligned with HOP dump
parent
db813484
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/Lib/CommonLib/NNInference.h
+4
-0
4 additions, 0 deletions
source/Lib/CommonLib/NNInference.h
source/Lib/CommonLib/TypeDef.h
+2
-2
2 additions, 2 deletions
source/Lib/CommonLib/TypeDef.h
with
6 additions
and
2 deletions
source/Lib/CommonLib/NNInference.h
+
4
−
0
View file @
42c0e9d6
...
...
@@ -422,9 +422,11 @@ public:
case
NN_INPUT_PRED
:
fillInputFromBuf
<
T
>
(
pic
,
inferArea
,
inputs
[
inputData
.
index
],
pic
->
getPredBufCustom
(
inferArea
),
inputData
.
luma
,
inputData
.
chroma
,
inputData
.
scale
,
inputData
.
shift
);
break
;
#if NNVC_USE_PARTITION_AS_CU_AVERAGE
case
NN_INPUT_PARTITION
:
fillInputFromBuf
<
T
>
(
pic
,
inferArea
,
inputs
[
inputData
.
index
],
pic
->
getCuAverageBuf
(
inferArea
),
inputData
.
luma
,
inputData
.
chroma
,
inputData
.
scale
,
inputData
.
shift
);
break
;
#endif
case
NN_INPUT_BS
:
fillInputFromBuf
<
T
>
(
pic
,
inferArea
,
inputs
[
inputData
.
index
],
pic
->
getBsMapBuf
(
inferArea
),
inputData
.
luma
,
inputData
.
chroma
,
inputData
.
scale
,
inputData
.
shift
);
break
;
...
...
@@ -470,9 +472,11 @@ public:
case
NN_INPUT_PRED
:
fillInputFromBuf
<
T
>
(
pic
,
inferArea
,
inputs
[
inputData
.
index
],
pic
->
getPredBufCustom
(
inferArea
),
inputData
.
luma
,
inputData
.
chroma
,
inputData
.
scale
,
inputData
.
shift
,
flip
);
break
;
#if NNVC_USE_PARTITION_AS_CU_AVERAGE
case
NN_INPUT_PARTITION
:
fillInputFromBuf
<
T
>
(
pic
,
inferArea
,
inputs
[
inputData
.
index
],
pic
->
getCuAverageBuf
(
inferArea
),
inputData
.
luma
,
inputData
.
chroma
,
inputData
.
scale
,
inputData
.
shift
,
flip
);
break
;
#endif
case
NN_INPUT_BS
:
fillInputFromBuf
<
T
>
(
pic
,
inferArea
,
inputs
[
inputData
.
index
],
pic
->
getBsMapBuf
(
inferArea
),
inputData
.
luma
,
inputData
.
chroma
,
inputData
.
scale
,
inputData
.
shift
,
flip
);
break
;
...
...
This diff is collapsed.
Click to expand it.
source/Lib/CommonLib/TypeDef.h
+
2
−
2
View file @
42c0e9d6
...
...
@@ -92,9 +92,9 @@ using TypeSadl = float;
#define NNVC_USE_REC_AFTER_DBF 0 // reconstruction after DBF
#define NNVC_USE_PRED 1 // prediction
#define NNVC_USE_BS 1 // BS of DBF
#define NNVC_USE_PARTITION_AS_CU_AVERAGE
1
// average on the CU
#define NNVC_USE_PARTITION_AS_CU_AVERAGE
0
// average on the CU
#define NNVC_USE_QP 1 // QP slice
#define NNVC_USE_SLICETYPE
1
// slice type
#define NNVC_USE_SLICETYPE
0
// slice type
#define JVET_AC0089_NNVC_USE_BPM_INFO 1 // JVET-AC0089: dump Block Prediction Mode
...
...
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