Skip to content

Commit b720d11

Browse files
committed
whitespace
1 parent 2af36a4 commit b720d11

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/graphs.jl

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
# For passing options like array types and mask
3535
# struct LoopSetOptions
36-
36+
3737
# end
3838

3939
struct Loop
@@ -84,7 +84,7 @@ function vec_looprange(loop::Loop, isunrolled::Bool, W::Symbol, U::Int)
8484
else
8585
Expr(:call, :<, loop.itersymbol, Expr(:call, :-, loop.stopsym, incr))
8686
end
87-
end
87+
end
8888
function looprange(loop::Loop, incr::Int, mangledname::Symbol)
8989
incr -= 1#one(Int32)
9090
if iszero(incr)
@@ -554,7 +554,3 @@ function Base.push!(ls::LoopSet, ex::Expr, elementbytes::Int, position::Int)
554554
throw("Don't know how to handle expression:\n$ex")
555555
end
556556
end
557-
558-
559-
560-

test/dot.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ using Test
178178
end
179179
4acc/length(x)
180180
end
181-
181+
182182
# @macroexpand @_avx for i = 1:length(a_re) - 1
183183
# c_re[i] = b_re[i] * a_re[i + 1] - b_im[i] * a_im[i + 1]
184184
# c_im[i] = b_re[i] * a_im[i + 1] + b_im[i] * a_re[i + 1]
@@ -217,7 +217,7 @@ using Test
217217
b_re = rand(R, N); b_im = rand(R, N);
218218
ac = Complex.(a_re, a_im);
219219
bc = Complex.(b_re, b_im);
220-
220+
221221
@test mydot(ac, bc) complex_dot_soa(a_re, a_im, b_re, b_im)
222222

223223
c_re1 = similar(a_re); c_im1 = similar(a_im);

0 commit comments

Comments
 (0)