1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-09-13 08:35:40 +02:00

single-threaded compute_SOS with @parallel option

This commit is contained in:
kalmarek 2017-08-27 18:30:49 +02:00
parent 9a62cc2444
commit 9328fa9187

View File

@ -36,17 +36,17 @@ function compute_SOS(sqrt_matrix, elt::GroupRingElem)
l = length(elt.coeffs)
pm = parent(elt).pm
# result = zeros(eltype(sqrt_matrix), l)
# for i in 1:n
# result .+= groupring_square(view(sqrt_matrix,:,i), l, pm)
# end
@everywhere groupring_square = PropertyT.groupring_square
result = @parallel (+) for i in 1:n
groupring_square(view(sqrt_matrix,:,i), length(elt.coeffs), parent(elt).pm)
result = zeros(eltype(sqrt_matrix), l)
for i in 1:n
result .+= groupring_square(view(sqrt_matrix,:,i), l, pm)
end
# @everywhere groupring_square = PropertyT.groupring_square
#
# result = @parallel (+) for i in 1:n
# groupring_square(view(sqrt_matrix,:,i), length(elt.coeffs), parent(elt).pm)
# end
return GroupRingElem(result, parent(elt))
end