Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM
Manage
Activity
Members
Labels
Plan
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
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
Keming Cao
VVCSoftware_VTM
Commits
699afffb
Commit
699afffb
authored
5 years ago
by
Brian Heng
Browse files
Options
Downloads
Patches
Plain Diff
Fix for Ticket #662 - Overflow in SIMD PROF
- Simplify code using saturated add instead.
parent
f442e782
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
source/Lib/CommonLib/x86/BufferX86.h
+4
-8
4 additions, 8 deletions
source/Lib/CommonLib/x86/BufferX86.h
with
4 additions
and
8 deletions
source/Lib/CommonLib/x86/BufferX86.h
+
4
−
8
View file @
699afffb
...
...
@@ -367,7 +367,7 @@ void applyPROF_SSE(Pel* dstPel, int dstStride, const Pel* srcPel, int srcStride,
#if !JVET_P0057_BDOF_PROF_HARMONIZATION
__m256i
mm_dIoffset
=
_mm256_set1_epi32
(
1
);
#endif
__m256i
mm_offset
=
_mm256_set1_epi
32
(
offset
);
__m256i
mm_offset
=
_mm256_set1_epi
16
(
offset
);
__m256i
vibdimin
=
_mm256_set1_epi16
(
clpRng
.
min
);
__m256i
vibdimax
=
_mm256_set1_epi16
(
clpRng
.
max
);
__m256i
mm_dimin
=
_mm256_set1_epi32
(
-
dILimit
);
...
...
@@ -377,7 +377,7 @@ void applyPROF_SSE(Pel* dstPel, int dstStride, const Pel* srcPel, int srcStride,
#if !JVET_P0057_BDOF_PROF_HARMONIZATION
__m128i
mm_dIoffset
=
_mm_set1_epi32
(
1
);
#endif
__m128i
mm_offset
=
_mm_set1_epi
32
(
offset
);
__m128i
mm_offset
=
_mm_set1_epi
16
(
offset
);
__m128i
vibdimin
=
_mm_set1_epi16
(
clpRng
.
min
);
__m128i
vibdimax
=
_mm_set1_epi16
(
clpRng
.
max
);
__m128i
mm_dimin
=
_mm_set1_epi32
(
-
dILimit
);
...
...
@@ -458,9 +458,7 @@ void applyPROF_SSE(Pel* dstPel, int dstStride, const Pel* srcPel, int srcStride,
mm_dI
=
_mm256_add_epi16
(
mm_dI
,
mm_src
);
if
(
!
bi
)
{
__m256i
tmp0
=
_mm256_srai_epi32
(
_mm256_add_epi32
(
_mm256_srai_epi32
(
_mm256_unpacklo_epi16
(
mm_dI
,
mm_dI
),
16
),
mm_offset
),
shiftNum
);
__m256i
tmp1
=
_mm256_srai_epi32
(
_mm256_add_epi32
(
_mm256_srai_epi32
(
_mm256_unpackhi_epi16
(
mm_dI
,
mm_dI
),
16
),
mm_offset
),
shiftNum
);
mm_dI
=
_mm256_packs_epi32
(
tmp0
,
tmp1
);
mm_dI
=
_mm256_srai_epi16
(
_mm256_adds_epi16
(
mm_dI
,
mm_offset
),
shiftNum
);
mm_dI
=
_mm256_min_epi16
(
vibdimax
,
_mm256_max_epi16
(
vibdimin
,
mm_dI
));
}
...
...
@@ -499,9 +497,7 @@ void applyPROF_SSE(Pel* dstPel, int dstStride, const Pel* srcPel, int srcStride,
mm_dI
=
_mm_add_epi16
(
_mm_unpacklo_epi64
(
_mm_loadl_epi64
((
const
__m128i
*
)
src
),
_mm_loadl_epi64
((
const
__m128i
*
)(
src
+
srcStride
))),
mm_dI
);
if
(
!
bi
)
{
__m128i
tmp0
=
_mm_srai_epi32
(
_mm_add_epi32
(
_mm_srai_epi32
(
_mm_unpacklo_epi16
(
mm_dI
,
mm_dI
),
16
),
mm_offset
),
shiftNum
);
__m128i
tmp1
=
_mm_srai_epi32
(
_mm_add_epi32
(
_mm_srai_epi32
(
_mm_unpackhi_epi16
(
mm_dI
,
mm_dI
),
16
),
mm_offset
),
shiftNum
);
mm_dI
=
_mm_packs_epi32
(
tmp0
,
tmp1
);
mm_dI
=
_mm_srai_epi16
(
_mm_adds_epi16
(
mm_dI
,
mm_offset
),
shiftNum
);
mm_dI
=
_mm_min_epi16
(
vibdimax
,
_mm_max_epi16
(
vibdimin
,
mm_dI
));
}
...
...
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