Skip to content

Commit b292013

Browse files
committed
Drop omp vectorisation.
1 parent 5e5ee15 commit b292013

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pyop2/sequential.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,7 @@ def vectorise(wrapper, iname, batch_size):
7979
inner_iname = iname + "_batch"
8080

8181
if configuration["vectorization_strategy"] == "ve":
82-
# vectorize using vector extenstions
8382
kernel = loopy.split_iname(kernel, iname, batch_size, slabs=slabs, inner_tag="c_vec", inner_iname=inner_iname)
84-
else:
85-
# vectoriza using omp pragma simd
86-
assert configuration["vectorization_strategy"] == "omp"
87-
kernel = loopy.split_iname(kernel, iname, batch_size, slabs=slabs, inner_tag="omp_simd", inner_iname=inner_iname)
8883

8984
alignment = configuration["alignment"]
9085
tmps = dict((name, tv.copy(alignment=alignment)) for name, tv in kernel.temporary_variables.items())

0 commit comments

Comments
 (0)