Skip to content

Commit

Permalink
Fix uses of now-lazy adjoint (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Dec 20, 2017
1 parent 7ee82cc commit 8302e87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fft.jl
Original file line number Diff line number Diff line change
Expand Up @@ -444,11 +444,11 @@ function dims_howmany(X::StridedArray, Y::StridedArray,
end
ist = [strides(X)...]
ost = [strides(Y)...]
dims = [sz[reg] ist[reg] ost[reg]]'
dims = adjoint([sz[reg] ist[reg] ost[reg]])
oreg = [1:ndims(X);]
oreg[reg] = 0
oreg = filter(d -> d > 0, oreg)
howmany = [sz[oreg] ist[oreg] ost[oreg]]'
howmany = adjoint([sz[oreg] ist[oreg] ost[oreg]])
return (dims, howmany)
end

Expand Down

0 comments on commit 8302e87

Please sign in to comment.