Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmp_tool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Dominik Loidolt
cmp_tool
Commits
2286a593
Commit
2286a593
authored
2 years ago
by
Dominik Loidolt
Browse files
Options
Downloads
Patches
Plain Diff
Fixed an error when using the last_info option that caused the model to be set to zero
parent
78174e8c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+1
-1
1 addition, 1 deletion
CHANGELOG.md
cmp_tool.c
+4
-0
4 additions, 0 deletions
cmp_tool.c
meson.build
+1
-1
1 addition, 1 deletion
meson.build
with
6 additions
and
2 deletions
CHANGELOG.md
+
1
−
1
View file @
2286a593
...
...
@@ -18,7 +18,7 @@ All notable changes to this project will be documented in this file.
-
remove memory leaks from tests
-
fixed incorrect error message when using rdcu_pkt option without .rdcu_pkt_mode_cfg file
-
set the rdcu_par option when using the rdcu_pkt option
-
fixed
a
bug when using the last_info option
-
fixed
several
bug when using the last_info option
## [0.09] - 30-09-2022
...
...
This diff is collapsed.
Click to expand it.
cmp_tool.c
+
4
−
0
View file @
2286a593
...
...
@@ -746,11 +746,15 @@ static int compression(struct cmp_cfg *cfg, struct cmp_info *info)
}
if
(
rdcu_pkt_mode
)
{
void
*
tmp
=
cfg
->
icu_new_model_buf
;
cfg
->
icu_new_model_buf
=
NULL
;
printf
(
"Generate compression setup packets ...
\n
"
);
error
=
gen_rdcu_write_pkts
(
cfg
);
if
(
error
)
goto
error_cleanup
;
printf
(
"... DONE
\n
"
);
cfg
->
icu_new_model_buf
=
tmp
;
}
printf
(
"Compress data ... "
);
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
1
−
1
View file @
2286a593
project
(
'cmp_tool'
,
'c'
,
version
:
'0.10-b.
3
'
,
version
:
'0.10-b.
4
'
,
meson_version
:
'>= 0.56'
,
license
:
'GPL-2.0'
,
default_options
:
[
'warning_level=3'
,
'c_std=gnu99'
]
...
...
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