What does “loops per byte” mean to execute an algorithm?

What does “loops per byte” mean to execute an algorithm?

+3
source share
2 answers

From Wikipedia :

Cycles per byte (sometimes abbreviated cpb) - a unit of measure that indicates the number of clock cycles a microprocessor will work for each byte (usually with an octet) of data processed in the algorithm. This is commonly used as a partial indicator of real work in cryptographic functions.

On the IBM page :

(number of processors × processor_ recycling × processor clock speed) / Throughput in bytes per second or transaction per second = cycles per byte or transaction.

+2
source

"" ( " " ) - , CPU . , .

"", , , . , , , , :

for each character in string:
    load character
    change to upper case
    store character

" ".

+1

Source: https://habr.com/ru/post/1786088/


All Articles