Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

the question is: is there a python wrapper over a c/c++ library to manipulate bits on a lower lever ? (like BitMagic) The main purpose is to search for a bit wildcard (smth like: 0b11**0110**101*11, where * - is an insignificant bit). wildcard is not byte aligned (i mean i might be 10 bits or 13 bits length or evn more) do not want to create a bicycle (using a State machine and so on...)

share|improve this question
What are you searching? And why does it need to be in C++? What's wrong with doing this in python? – Falmarri Feb 9 '11 at 19:25
I'm looking into the input bit sequence number of times to meet a sequence of bits, which corresponds to a specific bitmask. For example the input and the mask is 0b00111111100101101 0b1 * 11 at the exit I get the number of entries = 2 All of this can be implemented in Python. Simply use the library on the C / C + + will give a big winnings in performance. – asssag Feb 9 '11 at 19:34
Unless you're going to have performance problems otherwise, I'd scrap that idea. Writing the C code along could be a bit of a challenge, let alone make it as efficient as humanly possibly (you seem to have a thing for that ;)) and can add a medium hassle with compiling and linking it. It's not worth the extra effort, as small as it may appear, if the difference won't be noticed anyway. – delnan Feb 9 '11 at 19:41
And if you had to have parts of it in C, I'd suggest using SciPy's Weave which lets you embedded C code in python for when you must have the speed of C. – troutinator Feb 9 '11 at 19:49
At least look into using Cython (cython.org) if you decide to go the path of C acceleration. Then you can get your algorithm working in Python first, before compiling it to machine code for speed. – ncoghlan Feb 10 '11 at 3:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.