2022-08-01から1ヶ月間の記事一覧
背景 inside.estie.co.jp を読んでExステージについて検証したくなったので alloc_bytes と alloc_list の速度差について python 3.11 intel mac def alloc_bytes(size): return b"ABCDEFGH" * size while True: alloc_bytes(1024**2 * 128) def alloc_list(…
背景 inside.estie.co.jp を読んでExステージについて検証したくなったので alloc_bytes と alloc_list の速度差について python 3.11 intel mac def alloc_bytes(size): return b"ABCDEFGH" * size while True: alloc_bytes(1024**2 * 128) def alloc_list(…