Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pystencils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Markus Holzer
pystencils
Commits
f0ab0460
Commit
f0ab0460
authored
4 years ago
by
Markus Holzer
Browse files
Options
Downloads
Patches
Plain Diff
clean up
parent
ca67a0ce
No related branches found
No related tags found
No related merge requests found
Pipeline
#28524
passed
4 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
pystencils_tests/test_vectorization.py
+4
-1
4 additions, 1 deletion
pystencils_tests/test_vectorization.py
with
5 additions
and
2 deletions
.gitlab-ci.yml
+
1
−
1
View file @
f0ab0460
...
@@ -108,7 +108,7 @@ minimal-sympy-master:
...
@@ -108,7 +108,7 @@ minimal-sympy-master:
allow_failure
:
true
allow_failure
:
true
tags
:
tags
:
-
docker
-
docker
-
i10swarm10
-
cuda
pycodegen-integration
:
pycodegen-integration
:
...
...
This diff is collapsed.
Click to expand it.
pystencils_tests/test_vectorization.py
+
4
−
1
View file @
f0ab0460
...
@@ -8,7 +8,10 @@ from pystencils.fast_approximation import insert_fast_sqrts, insert_fast_divisio
...
@@ -8,7 +8,10 @@ from pystencils.fast_approximation import insert_fast_sqrts, insert_fast_divisio
from
pystencils.transformations
import
replace_inner_stride_with_one
from
pystencils.transformations
import
replace_inner_stride_with_one
supported_instruction_sets
=
get_supported_instruction_sets
()
if
get_supported_instruction_sets
()
else
[]
supported_instruction_sets
=
get_supported_instruction_sets
()
if
get_supported_instruction_sets
()
else
[]
instruction_set
=
"
avx
"
if
"
avx
"
in
supported_instruction_sets
else
"
sse
"
if
supported_instruction_sets
:
instruction_set
=
"
avx
"
if
"
avx
"
in
supported_instruction_sets
else
"
sse
"
else
:
instruction_set
=
None
def
test_vector_type_propagation
():
def
test_vector_type_propagation
():
a
,
b
,
c
,
d
,
e
=
sp
.
symbols
(
"
a b c d e
"
)
a
,
b
,
c
,
d
,
e
=
sp
.
symbols
(
"
a b c d e
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment