Skip to content

Commit 83e9bdc

Browse files
committed
Format
1 parent 66eb6a7 commit 83e9bdc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ext/VLBISkyModelsReactantExt.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ function ReactantNFFTPlan(
8383
params, N, NOut, J, Ñ, dims_ = NFFT.initParams(k, N, dims; kwargs...)
8484

8585
# Get the correct type
86-
FP = @jit plan_fft!(zeros(ComplexF64, 2,2))
87-
BP = @jit plan_bfft!(zeros(ComplexF64, 2,2))
86+
FP = @jit plan_fft!(zeros(ComplexF64, 2, 2))
87+
BP = @jit plan_bfft!(zeros(ComplexF64, 2, 2))
8888

8989
params.storeDeconvolutionIdx = true # GPU_NFFT only works this way
9090
params.precompute = NFFT.FULL # GPU_NFFT only works this way

test/reactant.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Reactant
22

33
@testset "Reactant" begin
4-
4+
55
gim = imagepixels(10.0, 10.0, 128, 128)
66
gimr = @jit(identity(gim))
77

@@ -11,8 +11,8 @@ using Reactant
1111
mr = ContinuousImage(rastr, gimr, BSplinePulse{3}())
1212
m = ContinuousImage(rast, gim, BSplinePulse{3}())
1313

14-
u = randn(64)/5.0
15-
v = randn(64)/5.0
14+
u = randn(64) / 5.0
15+
v = randn(64) / 5.0
1616
guv = UnstructuredDomain((U = u, V = v))
1717

1818
gfn = FourierDualDomain(gim, guv, NFFTAlg())
@@ -22,4 +22,4 @@ using Reactant
2222
vrf = @jit visibilitymap(mr, gfr)
2323

2424
@test parent(vrf) vnf
25-
end
25+
end

0 commit comments

Comments
 (0)