Skip to content
Snippets Groups Projects
Commit 87a3ace8 authored by Vojtěch Moravec's avatar Vojtěch Moravec
Browse files

Made benchmark results in database more unified.

parent d4a6acdc
No related branches found
No related tags found
No related merge requests found
......@@ -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
No preview for this file type
// 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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment