Skip to content

Instantly share code, notes, and snippets.

@kain88-de
Created August 8, 2018 07:26
Show Gist options
  • Save kain88-de/910aa5cbe1ed9ac2aba221cb1ea7473f to your computer and use it in GitHub Desktop.
Save kain88-de/910aa5cbe1ed9ac2aba221cb1ea7473f to your computer and use it in GitHub Desktop.
boolean conversion benchmark
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%load_ext cython\n",
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [],
"source": [
"%%cython\n",
"cimport numpy as np\n",
"import numpy as np\n",
"import cython\n",
"\n",
"@cython.boundscheck(False)\n",
"@cython.wraparound(False)\n",
"def bool2indices(np.ndarray[np.uint8_t, cast=True] boolvalues):\n",
" cdef int size = boolvalues.size\n",
" cdef np.int64_t[:] indices = np.empty(size, dtype=np.int64)\n",
"\n",
" cdef int i, j\n",
" j = 0\n",
" for i in range(size):\n",
" if boolvalues[i]:\n",
" indices[j] = i\n",
" j += 1\n",
"\n",
" return np.array(indices[:j])"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"b = np.random.uniform(size=10000) < .5"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"i = bool2indices(b)\n",
"i2 = np.arange(len(b))[b]\n",
"i3 = np.where(b)[0]"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"np.allclose(i, i2)"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"np.allclose(i, i3)"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"529 µs ± 22.7 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)\n"
]
}
],
"source": [
"%%timeit b = np.random.uniform(size=100000) < .5\n",
"bool2indices(b)"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"663 µs ± 6.86 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)\n"
]
}
],
"source": [
"%%timeit b = np.random.uniform(size=100000) < .5\n",
"np.arange(len(b))[b]"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"425 µs ± 8.53 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)\n"
]
}
],
"source": [
"%%timeit b = np.random.uniform(size=100000) < .5\n",
"np.where(b)[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:complexes]",
"language": "python",
"name": "conda-env-complexes-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment