Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Opus
Commits
b155bb88
Commit
b155bb88
authored
16 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Plain Diff
Merge branch 'cwrs_speedup'
Conflicts: libcelt/cwrs.c tests/cwrs32-test.c
parents
7bb339d9
5ee9715c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
libcelt/cwrs.c
+39
-82
39 additions, 82 deletions
libcelt/cwrs.c
libcelt/cwrs.h
+2
-4
2 additions, 4 deletions
libcelt/cwrs.h
tests/cwrs32-test.c
+4
-4
4 additions, 4 deletions
tests/cwrs32-test.c
tests/cwrs64-test.c
+4
-4
4 additions, 4 deletions
tests/cwrs64-test.c
with
49 additions
and
94 deletions
libcelt/cwrs.c
+
39
−
82
View file @
b155bb88
...
...
@@ -193,138 +193,97 @@ static inline void uprev32(celt_uint32_t *_ui,int _n,celt_uint32_t _ui0){
/*Returns the number of ways of choosing _m elements from a set of size _n with
replacement when a sign bit is needed for each unique element.
On input, _u should be initialized to column (_m-1) of U(n,m).
On exit, _u will be initialized to column _m of U(n,m).*/
celt_uint32_t
ncwrs_unext32
(
int
_n
,
celt_uint32_t
*
_ui
){
celt_uint32_t
ret
;
celt_uint32_t
ui0
;
celt_uint32_t
ui1
;
int
j
;
ret
=
ui0
=
2
;
celt_assert
(
_n
>=
2
);
j
=
1
;
do
{
ui1
=
_ui
[
j
]
+
_ui
[
j
-
1
]
+
ui0
;
_ui
[
j
-
1
]
=
ui0
;
ui0
=
ui1
;
ret
+=
ui0
;
}
while
(
++
j
<
_n
);
_ui
[
j
-
1
]
=
ui0
;
return
ret
;
}
/*Returns the number of ways of choosing _m elements from a set of size _n with
replacement when a sign bit is needed for each unique element.
_u: On exit, _u[i] contains U(i+1,_m).*/
_u: On exit, _u[i] contains U(_n,i) for i in [0..._m+1].*/
celt_uint32_t
ncwrs_u32
(
int
_n
,
int
_m
,
celt_uint32_t
*
_u
){
celt_uint32_t
ret
;
celt_uint32_t
um2
;
int
k
;
/*If _m==0, _u[] should be set to zero and the return should be 1.*/
celt_assert
(
_m
>
0
);
/*We'll overflow our buffer unless _n>=2.*/
celt_assert
(
_n
>=
2
);
um2
=
_u
[
0
]
=
1
;
if
(
_m
<=
6
){
if
(
_m
<
2
){
k
=
1
;
do
_u
[
k
]
=
1
;
while
(
++
k
<
_n
);
}
else
{
k
=
1
;
do
_u
[
k
]
=
(
k
<<
1
)
+
1
;
while
(
++
k
<
_n
);
for
(
k
=
2
;
k
<
_m
;
k
++
)
unext32
(
_u
,
_n
,
1
);
}
int
len
;
len
=
_m
+
2
;
_u
[
0
]
=
0
;
_u
[
1
]
=
um2
=
1
;
if
(
_n
<=
6
){
/*If _n==0, _u[0] should be 1 and the rest should be 0.*/
/*If _n==1, _u[i] should be 1 for i>1.*/
celt_assert
(
_n
>=
2
);
/*If _m==0, the following do-while loop will overflow the buffer.*/
celt_assert
(
_m
>
0
);
k
=
2
;
do
_u
[
k
]
=
(
k
<<
1
)
-
1
;
while
(
++
k
<
len
);
for
(
k
=
2
;
k
<
_n
;
k
++
)
unext32
(
_u
+
2
,
_m
,(
k
<<
1
)
+
1
);
}
else
{
celt_uint32_t
um1
;
celt_uint32_t
n2m1
;
_u
[
1
]
=
n2m1
=
um1
=
(
_
m
<<
1
)
-
1
;
for
(
k
=
2
;
k
<
_
n
;
k
++
){
_u
[
2
]
=
n2m1
=
um1
=
(
_
n
<<
1
)
-
1
;
for
(
k
=
3
;
k
<
le
n
;
k
++
){
/*U(n,m) = ((2*n-1)*U(n,m-1)-U(n,m-2))/(m-1) + U(n,m-2)*/
_u
[
k
]
=
um2
=
imusdiv32even
(
n2m1
,
um1
,
um2
,
k
)
+
um2
;
if
(
++
k
>=
_
n
)
break
;
_u
[
k
]
=
um1
=
imusdiv32odd
(
n2m1
,
um2
,
um1
,
k
>>
1
)
+
um1
;
_u
[
k
]
=
um2
=
imusdiv32even
(
n2m1
,
um1
,
um2
,
k
-
1
)
+
um2
;
if
(
++
k
>=
le
n
)
break
;
_u
[
k
]
=
um1
=
imusdiv32odd
(
n2m1
,
um2
,
um1
,
k
-
1
>>
1
)
+
um1
;
}
}
ret
=
1
;
k
=
1
;
do
ret
+=
_u
[
k
];
while
(
++
k
<
_n
);
return
ret
<<
1
;
return
_u
[
_m
]
+
_u
[
_m
+
1
];
}
/*Returns the _i'th combination of _m elements chosen from a set of size _n
with associated sign bits.
_y: Returns the vector of pulses.
_u: Must contain entries [
1
..._
n
] of
column
_
m
of U() on input.
_u: Must contain entries [
0
..._
m+1
] of
row
_
n
of U() on input.
Its contents will be destructively modified.*/
void
cwrsi32
(
int
_n
,
int
_m
,
celt_uint32_t
_i
,
celt_uint32_t
_nc
,
int
*
_y
,
celt_uint32_t
*
_u
){
celt_uint32_t
p
;
celt_uint32_t
q
;
int
j
;
int
k
;
void
cwrsi32
(
int
_n
,
int
_m
,
celt_uint32_t
_i
,
int
*
_y
,
celt_uint32_t
*
_u
){
int
j
;
int
k
;
celt_assert
(
_n
>
0
);
p
=
_nc
;
q
=
0
;
j
=
0
;
k
=
_m
;
do
{
int
s
;
int
yj
;
p
-=
q
;
q
=
_u
[
_n
-
j
-
1
];
p
-=
q
;
celt_uint32_t
p
;
int
s
;
int
yj
;
p
=
_u
[
k
+
1
];
s
=
_i
>=
p
;
if
(
s
)
_i
-=
p
;
yj
=
k
;
while
(
q
>
_i
){
uprev32
(
_u
,
_n
-
j
,
--
k
>
0
);
p
=
q
;
q
=
_u
[
_n
-
j
-
1
];
}
_i
-=
q
;
p
=
_u
[
k
];
while
(
p
>
_i
)
p
=
_u
[
--
k
];
_i
-=
p
;
yj
-=
k
;
_y
[
j
]
=
yj
-
(
yj
<<
1
&-
s
);
uprev32
(
_u
,
k
+
2
,
0
);
}
while
(
++
j
<
_n
);
}
/*Returns the index of the given combination of _m elements chosen from a set
of size _n with associated sign bits.
_y: The vector of pulses, whose sum of absolute values must be _m.
_nc: Returns V(_n,_m).*/
celt_uint32_t
icwrs32
(
int
_n
,
int
_m
,
celt_uint32_t
*
_nc
,
const
int
*
_y
,
celt_uint32_t
*
_u
){
celt_uint32_t
nc
;
celt_uint32_t
i
;
int
j
;
int
k
;
/*We can't unroll the first two iterations of the loop unless _n>=2.*/
celt_assert
(
_n
>=
2
);
nc
=
1
;
i
=
_y
[
_n
-
1
]
<
0
;
_u
[
0
]
=
0
;
for
(
k
=
1
;
k
<=
_m
+
1
;
k
++
)
_u
[
k
]
=
(
k
<<
1
)
-
1
;
k
=
abs
(
_y
[
_n
-
1
]);
j
=
_n
-
2
;
nc
+=
_u
[
_m
];
i
+=
_u
[
k
];
k
+=
abs
(
_y
[
j
]);
if
(
_y
[
j
]
<
0
)
i
+=
_u
[
k
+
1
];
while
(
j
-->
0
){
unext32
(
_u
,
_m
+
2
,
0
);
nc
+=
_u
[
_m
];
i
+=
_u
[
k
];
k
+=
abs
(
_y
[
j
]);
if
(
_y
[
j
]
<
0
)
i
+=
_u
[
k
+
1
];
}
/*If _m==0, nc should not be doubled.*/
celt_assert
(
_m
>
0
);
*
_nc
=
nc
<<
1
;
*
_nc
=
_u
[
_m
]
+
_u
[
_m
+
1
];
return
i
;
}
...
...
@@ -346,7 +305,7 @@ int get_required_bits(int N, int K, int frac)
{
VARDECL
(
celt_uint32_t
,
u
);
SAVE_STACK
;
ALLOC
(
u
,
N
,
celt_uint32_t
);
ALLOC
(
u
,
K
+
2
,
celt_uint32_t
);
nbits
=
log2_frac
(
ncwrs_u32
(
N
,
K
,
u
),
frac
);
RESTORE_STACK
;
}
else
{
...
...
@@ -382,11 +341,9 @@ void encode_pulses(int *_y, int N, int K, ec_enc *enc)
static
inline
void
decode_pulse32
(
int
_n
,
int
_m
,
int
*
_y
,
ec_dec
*
_dec
){
VARDECL
(
celt_uint32_t
,
u
);
celt_uint32_t
nc
;
SAVE_STACK
;
ALLOC
(
u
,
_n
,
celt_uint32_t
);
nc
=
ncwrs_u32
(
_n
,
_m
,
u
);
cwrsi32
(
_n
,
_m
,
ec_dec_uint
(
_dec
,
nc
),
nc
,
_y
,
u
);
ALLOC
(
u
,
_m
+
2
,
celt_uint32_t
);
cwrsi32
(
_n
,
_m
,
ec_dec_uint
(
_dec
,
ncwrs_u32
(
_n
,
_m
,
u
)),
_y
,
u
);
RESTORE_STACK
;
}
...
...
This diff is collapsed.
Click to expand it.
libcelt/cwrs.h
+
2
−
4
View file @
b155bb88
...
...
@@ -46,8 +46,7 @@ int fits_in64(int _n, int _m);
/* 32-bit versions */
celt_uint32_t
ncwrs_u32
(
int
_n
,
int
_m
,
celt_uint32_t
*
_u
);
void
cwrsi32
(
int
_n
,
int
_m
,
celt_uint32_t
_i
,
celt_uint32_t
_nc
,
int
*
_y
,
celt_uint32_t
*
_u
);
void
cwrsi32
(
int
_n
,
int
_m
,
celt_uint32_t
_i
,
int
*
_y
,
celt_uint32_t
*
_u
);
celt_uint32_t
icwrs32
(
int
_n
,
int
_m
,
celt_uint32_t
*
_nc
,
const
int
*
_y
,
celt_uint32_t
*
_u
);
...
...
@@ -55,8 +54,7 @@ celt_uint32_t icwrs32(int _n,int _m,celt_uint32_t *_nc,const int *_y,
/* 64-bit versions */
celt_uint64_t
ncwrs_u64
(
int
_n
,
int
_m
,
celt_uint64_t
*
_u
);
void
cwrsi64
(
int
_n
,
int
_m
,
celt_uint64_t
_i
,
celt_uint64_t
_nc
,
int
*
_y
,
celt_uint64_t
*
_u
);
void
cwrsi64
(
int
_n
,
int
_m
,
celt_uint64_t
_i
,
int
*
_y
,
celt_uint64_t
*
_u
);
celt_uint64_t
icwrs64
(
int
_n
,
int
_m
,
celt_uint64_t
*
_nc
,
const
int
*
_y
,
celt_uint64_t
*
_u
);
...
...
This diff is collapsed.
Click to expand it.
tests/cwrs32-test.c
+
4
−
4
View file @
b155bb88
...
...
@@ -13,7 +13,7 @@ int main(int _argc,char **_argv){
for
(
n
=
2
;
n
<=
NMAX
;
n
++
){
int
m
;
for
(
m
=
1
;
m
<=
MMAX
;
m
++
){
celt_uint32_t
uu
[
N
MAX
];
celt_uint32_t
uu
[
M
MAX
+
2
];
celt_uint32_t
inc
;
celt_uint32_t
nc
;
celt_uint32_t
i
;
...
...
@@ -21,11 +21,11 @@ int main(int _argc,char **_argv){
inc
=
nc
/
10000
;
if
(
inc
<
1
)
inc
=
1
;
for
(
i
=
0
;
i
<
nc
;
i
+=
inc
){
celt_uint32_t
u
[
NMAX
>
MMAX
+
2
?
NMAX
:
MMAX
+
2
];
celt_uint32_t
u
[
MMAX
+
2
];
int
y
[
NMAX
];
celt_uint32_t
v
;
memcpy
(
u
,
uu
,
n
*
sizeof
(
*
u
));
cwrsi32
(
n
,
m
,
i
,
nc
,
y
,
u
);
memcpy
(
u
,
uu
,
(
m
+
2
)
*
sizeof
(
*
u
));
cwrsi32
(
n
,
m
,
i
,
y
,
u
);
/*printf("%6u of %u:",i,nc);
for(k=0;k<n;k++)printf(" %+3i",y[k]);
printf(" ->");*/
...
...
This diff is collapsed.
Click to expand it.
tests/cwrs64-test.c
+
4
−
4
View file @
b155bb88
...
...
@@ -14,7 +14,7 @@ int main(int _argc,char **_argv){
for
(
n
=
2
;
n
<=
NMAX
;
n
+=
3
){
int
m
;
for
(
m
=
1
;
m
<=
MMAX
;
m
++
){
celt_uint64_t
uu
[
N
MAX
];
celt_uint64_t
uu
[
M
MAX
+
2
];
celt_uint64_t
inc
;
celt_uint64_t
nc
;
celt_uint64_t
i
;
...
...
@@ -24,12 +24,12 @@ int main(int _argc,char **_argv){
if
(
inc
<
1
)
inc
=
1
;
/*printf("%d/%d: %llu",n,m, nc);*/
for
(
i
=
0
;
i
<
nc
;
i
+=
inc
){
celt_uint64_t
u
[
NMAX
>
MMAX
+
2
?
NMAX
:
MMAX
+
2
];
celt_uint64_t
u
[
MMAX
+
2
];
int
y
[
NMAX
];
celt_uint64_t
v
;
int
k
;
memcpy
(
u
,
uu
,
n
*
sizeof
(
*
u
));
cwrsi64
(
n
,
m
,
i
,
nc
,
y
,
u
);
memcpy
(
u
,
uu
,
(
m
+
2
)
*
sizeof
(
*
u
));
cwrsi64
(
n
,
m
,
i
,
y
,
u
);
/*printf("%llu of %llu:",i,nc);
for(k=0;k<n;k++)printf(" %+3i",y[k]);
printf(" ->");*/
...
...
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