Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
e5f76b77
Commit
e5f76b77
authored
Oct 08, 2018
by
Alexandre Duret-Lutz
Browse files
solve build issue on Debian unstable i386
* tests/python/_product_weak.ipynb: Split large loop in two cells.
parent
82a152c3
Pipeline
#4075
passed with stages
in 287 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/python/_product_weak.ipynb
View file @
e5f76b77
...
...
@@ -3398,7 +3398,22 @@
},
"metadata": {},
"output_type": "display_data"
},
}
],
"source": [
"autslen = len(auts)\n",
"# We have trouble with Jupyter on i386, where running the full loop abort with some low-level \n",
"# exeptions from Jupyter client. \n",
"for left in auts[0:autslen//2]:\n",
" for right in auts:\n",
" display_inline(left, right, spot.product(left, right))"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
...
...
@@ -6508,17 +6523,15 @@
}
],
"source": [
"for left in auts:\n",
"for left in auts
[autslen//2:]
:\n",
" for right in auts:\n",
" display_inline(left, right, spot.product(left, right))"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"scrolled": false
},
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
...
...
@@ -10137,7 +10150,21 @@
},
"metadata": {},
"output_type": "display_data"
},
}
],
"source": [
"for left in auts[0:autslen//2]:\n",
" for right in auts:\n",
" display_inline(left, right, spot.product_or(left, right))"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
...
...
@@ -13363,7 +13390,7 @@
}
],
"source": [
"for left in auts:\n",
"for left in auts
[autslen//2:]
:\n",
" for right in auts:\n",
" display_inline(left, right, spot.product_or(left, right))"
]
...
...
@@ -13392,7 +13419,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.
5
"
"version": "3.6.
7rc1
"
}
},
"nbformat": 4,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment