python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Are there bit (un)packing instructions in common x86_64 processor line mmx command for bytes?
dead hachers!
Background:
Maybe you know mmx packing/unpacking instruction set, what howewer works on bytes and larger volumes, like shorts, words, etc.
Quesion:
Are there any instructions for any x8...

Peter Tschischik
Votes: 0
Answers: 0
How do I optimise numpy.packbits with numba?
I'm trying to optimise numpy.packbits:
import numpy as np
from numba import njit, prange
@njit(parallel=True)
def _numba_pack(arr, div, su):
for i in prange(div):
s = 0
for j in r...

mathfux
Votes: 0
Answers: 1