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

initial stab at the numba.typed.List benchmarks #10

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,44 @@ cd numba-benchmark
```bash
asv run
```

## Comparing two commits

Run `asv` on the first commit:

```bash
asv run "-1 d34db33f"
```

Run `asv` on the second commit:

```bash
asv run "-1 v0.42.0"
```

Note that the `-1 abcxyz` argument will be handed over to `git log`. The `-1`
is used to select only a single commit and the subsequent argument is the
commit-ish for the commit you would to run the benchmarks on. So, this can be a
hexadecimal commit identifier or a branch or tag.

Compare them:

```bash
asv compare "abcdefg" "1234567"
```

Useful options to consider:

```bash
asv run --verbose --show-stderr -b 'bench_typed_list' "-1 d34db33f"
```

This is useful, because `--show-stderr` will output any errors enountered and
`-b` can be used to limit the benchmark suits that will be run.

```bash
asv compare --machine machine.local "d34db33f" "v0.42.0"
```

This will restrict the comparison to only those benchmarks collected on the
machine `machine.local`.
294 changes: 294 additions & 0 deletions benchmarks/bench_typed_list.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,294 @@
"""
Benchmarks for numba.typed.List
"""

import numpy as np
from numba import njit
from numba.typed import List
from numba.typed.typedlist import _sort
from numba.core.registry import dispatcher_registry
from numba.core.typing import Signature
from numba.core.types import ListType, int64, float64, none, boolean, Array

SIZE = 10**5
SEED = 23

def check_getitem_unchecked():

@njit
def use_getitem_unchecked():
tl = List((1, 2, 3, 4))
return tl.getitem_unchecked(0)

try:
use_getitem_unchecked()
except Exception:
return False
else:
return True


have_getitem_unchecked = check_getitem_unchecked()


@njit
def make_random_typed_list_int(n):
tl = List()
np.random.seed(SEED)
for i in range(n):
tl.append(np.random.randint(0, 100))
return tl

@njit
def make_random_typed_list_float(n):
tl = List()
np.random.seed(SEED)
for i in range(n):
tl.append(np.random.randn())
return tl

@njit
def make_random_typed_list_array(n):
tl = List()
np.random.seed(SEED)
for i in range(n):
tl.append(np.zeros(4,))
return tl

def make_random_python_list(n):
pl = list()
np.random.seed(SEED)
for i in range(n):
pl.append(np.random.randint(0, 100))
return pl


def clear_dispatcher(dispatcher):
dispatcher._make_finalizer()()
dispatcher._reset_overloads()
dispatcher._cache.flush()
dispatcher._can_compile = True


class BaseSuite:
min_run_count = 5
warmup_time = 0.0
number = 1
repeat = 5


class SortSuite(BaseSuite):

def setup(self):
self.tl = make_random_typed_list_int(SIZE)
self.tl.sort()
self.dispatcher = dispatcher_registry['cpu'](_sort.py_func)
self.signature = Signature(none,
[ListType(int64), none, boolean],
None)
clear_dispatcher(self.dispatcher)

def time_execute_sort(self):
self.tl.sort()

def time_compile_sort(self):
self.dispatcher.compile(self.signature)


class ConstructionSuite(BaseSuite):

def setup(self):
self.pl = make_random_python_list(SIZE)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it should seed the the rng

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

List(self.pl)

def time_construct_from_python_list(self):
List(self.pl)

def time_construct_in_njit_function(self):
make_random_typed_list_int(SIZE)


class ReductionSuite(BaseSuite):

def setup(self):
raise NotImplementedError

def post_setup(self):

self.reduction_sum = self.define_function()

self.reduction_sum_fastmath = njit(self.reduction_sum, fastmath=True)
self.reduction_sum_no_fastmath = njit(self.reduction_sum)

self.reduction_sum_fastmath(self.tl)
self.reduction_sum_no_fastmath(self.tl)

self.fastmath_dispatcher = dispatcher_registry['cpu'](
self.reduction_sum_fastmath.py_func)
self.fastmath_dispatcher.targetoptions['fastmath'] = True

self.no_fastmath_dispatcher = dispatcher_registry['cpu'](
self.reduction_sum_no_fastmath.py_func)


clear_dispatcher(self.fastmath_dispatcher)
clear_dispatcher(self.no_fastmath_dispatcher)

def time_execute_reduction_sum_fastmath(self):
self.reduction_sum_fastmath(self.tl)

def time_compile_reduction_sum_fastmath(self):
self.fastmath_dispatcher.compile(self.signature)

def time_execute_reduction_sum_no_fastmath(self):
self.reduction_sum_no_fastmath(self.tl)

def time_compile_reduction_sum_no_fastmath(self):
self.no_fastmath_dispatcher.compile(self.signature)


class IteratorReductionSuiteInt(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_int(SIZE)
self.signature = Signature(int64, [ListType(int64)], None)
self.post_setup()

def define_function(self):

def reduction_sum(tl):
agg = 0
for i in tl:
agg += i
return agg

return reduction_sum

class IteratorReductionSuiteFloat(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_float(SIZE)
self.signature = Signature(float64, [ListType(float64)], None)
self.post_setup()

def define_function(self):

def reduction_sum(tl):
agg = 0.0
for i in tl:
agg += i
return agg

return reduction_sum

class ForLoopReductionSuiteInt(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_int(SIZE)
self.signature = Signature(int64, [ListType(int64)], None)
self.post_setup()

def define_function(self):

def reduction_sum(tl):
agg = 0
length = len(tl)
for i in range(length):
agg += tl[i]
return agg

return reduction_sum

class ForLoopReductionSuiteFloat(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_float(SIZE)
self.signature = Signature(float64, [ListType(float64)], None)
self.post_setup()

def define_function(self):

def reduction_sum(tl):
agg = 0.0
length = len(tl)
for i in range(length):
agg += tl[i]
return agg

return reduction_sum


class GetitemUncheckedReductionSuiteInt(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_int(SIZE)
self.signature = Signature(int64, [ListType(int64)], None)
self.post_setup()

def define_function(self):

def reduction_sum_regular(tl):
agg = 0
length = len(tl)
for i in range(length):
agg += tl[i]
return agg

def reduction_sum_unchecked(tl):
agg = 0
length = len(tl)
for i in range(length):
agg += tl.getitem_unchecked(i)
return agg

return reduction_sum_unchecked if have_getitem_unchecked else reduction_sum_regular

class GetitemUncheckedReductionSuiteFloat(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_float(SIZE)
self.signature = Signature(float64, [ListType(float64)], None)
self.post_setup()

def define_function(self):

def reduction_sum_regular(tl):
agg = 0.0
length = len(tl)
for i in range(length):
agg += tl[i]
return agg

def reduction_sum_unchecked(tl):
agg = 0.0
length = len(tl)
for i in range(length):
agg += tl.getitem_unchecked(i)
return agg

return reduction_sum_unchecked if have_getitem_unchecked else reduction_sum_regular


class ArrayListSuite(ReductionSuite):

def setup(self):

self.tl = make_random_typed_list_array(SIZE)
self.signature = Signature(float64, [ListType(Array(float64, 1, 'C'))], None)
self.post_setup()

def define_function(self):

def array_reduction(tl):
agg = 0.0
for i in tl:
agg += i.sum()
return agg

return array_reduction
Loading