Skip to content

Commit

Permalink
Replace prefetchnta with prefetcht0 for crc32
Browse files Browse the repository at this point in the history
  • Loading branch information
hanqf-git committed Mar 11, 2024
1 parent f1b144b commit 6bbdffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crc/crc32_iscsi_01.asm
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ CONCAT(_crc_,i,:)
crc32 crc2, qword [block_2 - i*8]

%if i > 128*8 / 32 ; prefetch next 3KB data
prefetchnta [block_2 + 128*32 - i*32]
prefetcht0 [block_2 + 128*32 - i*32]
%endif

%assign i (i-1)
Expand Down

0 comments on commit 6bbdffa

Please sign in to comment.