Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use bytearray() in FrameBuffer #1300

Merged
merged 2 commits into from
Feb 27, 2025
Merged

Use bytearray() in FrameBuffer #1300

merged 2 commits into from
Feb 27, 2025

Conversation

deedy5
Copy link
Contributor

@deedy5 deedy5 commented Feb 26, 2025

Changed self.data to use bytearray instead of bytes to improve performance.

import timeit

data = b"x" * 1024

def test_bytes():
    x = b""
    for _ in range(16):
        x += data

def test_bytearray():
    x = bytearray()
    for _ in range(16):
        x += data

bytes_time = timeit.timeit(test_bytes)
bytearray_time = timeit.timeit(test_bytearray)

print(f"{bytes_time=:.3} seconds")
print(f"{bytearray_time=:.3} seconds")

bytes_time=3.0 seconds
bytearray_time=1.09 seconds

@Kriechi
Copy link
Member

Kriechi commented Feb 26, 2025

Thanks for looking into this!

I'm wondering if a memoryview would be even more performant in this situation?
Looking at the code, the data attribute should probably be _data and considered private.

@deedy5
Copy link
Contributor Author

deedy5 commented Feb 26, 2025

What is the most efficient way to concatenate many strings together?

To accumulate many bytes objects, the recommended idiom is to extend a bytearray object using in-place concatenation (the += operator):

result = bytearray()
for b in my_bytes_objects:
   result += b

@deedy5
Copy link
Contributor Author

deedy5 commented Feb 26, 2025

I'm wondering if a memoryview would be even more performant in this situation?

memoryview don't support extend: https://github.com/python/cpython/blob/main/Objects/memoryobject.c

bytearray supports: https://github.com/python/cpython/blob/3f3e1c4095ae229b0c6d0364f289a20732281a96/Objects/bytearrayobject.c#L2082-L2191

@Kriechi Kriechi merged commit 191ac06 into python-hyper:master Feb 27, 2025
8 checks passed
@Kriechi
Copy link
Member

Kriechi commented Feb 27, 2025

Thanks! 🎉

@deedy5 deedy5 deleted the dev branch February 27, 2025 18:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants