Azzera filtri
Azzera filtri

Handling odd-sized integers

2 visualizzazioni (ultimi 30 giorni)
Iain
Iain il 21 Ago 2013
I have a horrible binary file format, which does have a defined format, and which can contain several odd types of data.
I have loaded the entire file to memory as uint8 data, as the code needs to work on remotely-networked servers, and this is faster than repeated disk accesses.
I have 4 bit, 3 bit, 2 bit and 1 bit integer data fields which may be signed. A single byte can contain two or more fields.
e.g. Field 1: 2 bits, Field 2: 2 bits, Field 3: 4 bits
Currently, for each field, I read the entire byte, right shift it (bitsra) to make the relevant bits the LSB's, use bitand to eliminate the upper, unused bits. If the field is signed, I check the uppermost bit in my valid area, and then set all higher bits equal to the same value using bitor, then I typecast it into int8.
I have a similar process using 2 and 4 bytes for the 24 bit and 12 bit integer fields.
Are there any faster bit operation functions than bitand/bitor/bitsra?
  3 Commenti
Walter Roberson
Walter Roberson il 21 Ago 2013
If you are doing large numbers of these in the same way, then using vectorized arithmetic operations would probably be faster than the bit* operations.
Iain
Iain il 22 Ago 2013
bitsra is massively slower than the straightforward division I thought it would be faster than. bitand/bitor do seem to be quick.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Structures in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by