Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
data_project
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vojtech Moravec
data_project
Commits
87a3ace8
Commit
87a3ace8
authored
6 years ago
by
Vojtěch Moravec
Browse files
Options
Downloads
Patches
Plain Diff
Made benchmark results in database more unified.
parent
d4a6acdc
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
.gitignore
+3
-1
3 additions, 1 deletion
.gitignore
czi-format/benchmark_results/benchmark.sqlite
+0
-0
0 additions, 0 deletions
czi-format/benchmark_results/benchmark.sqlite
czi-format/czi-parser/stream/bit_stream.h
+0
-9
0 additions, 9 deletions
czi-format/czi-parser/stream/bit_stream.h
with
3 additions
and
10 deletions
.gitignore
+
3
−
1
View file @
87a3ace8
...
...
@@ -20,4 +20,6 @@ czi_example_data/
build/
.vscode/
*.bin
*.lzma
\ No newline at end of file
*.lzma
czi-format/czi-parser/stream/bit_stream_demo.cpp
czi-format/czi-parser/stream/bs.o
This diff is collapsed.
Click to expand it.
czi-format/benchmark_results/benchmark
_data
.sqlite
→
czi-format/benchmark_results/benchmark.sqlite
+
0
−
0
View file @
87a3ace8
No preview for this file type
This diff is collapsed.
Click to expand it.
czi-format/czi-parser/stream/bit_stream.h
deleted
100644 → 0
+
0
−
9
View file @
d4a6acdc
// think about endianess and do it in a loop for different bits.size()
inline
byte
bits_to_byte
(
const
std
::
bitset
&
bits
)
{
byte
result
=
(
bits
[
7
]
<<
7
)
|
(
bits
[
6
]
<<
6
)
|
(
bits
[
5
]
<<
5
)
|
(
bits
[
4
]
<<
4
)
|
(
bits
[
3
]
<<
3
)
|
(
bits
[
2
]
<<
2
)
|
(
bits
[
1
]
<<
1
)
|
(
bits
[
0
])
|
;
return
result
;
}
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