Skip to content

New interface for ECCORestoring #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 44 commits into from
Nov 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
2a9b254
start changing ecco restoring
simone-silvestri Sep 19, 2024
3c7c0ce
this should work?
simone-silvestri Sep 20, 2024
82fd2d5
new interface
simone-silvestri Sep 20, 2024
fc33335
fix docstring
simone-silvestri Sep 20, 2024
d2f51d1
simplify
simone-silvestri Sep 20, 2024
bc8c226
adding a maxiter
simone-silvestri Sep 20, 2024
c9036ec
make it work
simone-silvestri Sep 20, 2024
8941604
remove manifest
simone-silvestri Sep 20, 2024
9f16b60
adding maxiter
simone-silvestri Sep 20, 2024
a94f083
some changes
simone-silvestri Sep 20, 2024
e53a807
add range checks
simone-silvestri Sep 20, 2024
7597b1b
fix docstring
simone-silvestri Sep 20, 2024
b5d1661
inpainting_iterations?
simone-silvestri Sep 20, 2024
f6f40ad
better docstring
simone-silvestri Sep 20, 2024
58517cb
better defaults
simone-silvestri Sep 20, 2024
beb0836
correct docstring
simone-silvestri Sep 20, 2024
764ad91
adding a show method
simone-silvestri Sep 20, 2024
ee03ff3
fixed tests
simone-silvestri Sep 23, 2024
f82292e
more fixes
simone-silvestri Sep 24, 2024
a474956
fix ranges check
simone-silvestri Sep 24, 2024
78012d0
fix ecco tests
simone-silvestri Sep 24, 2024
32fd953
fix ecco tests
simone-silvestri Oct 7, 2024
bda2828
correct the precompile runtime
simone-silvestri Oct 9, 2024
fc82bf8
remove concurrency
simone-silvestri Oct 21, 2024
e1c05a2
Merge branch 'main' into ss/ecco-restoring-interface
simone-silvestri Oct 21, 2024
cf5a861
bugfix
simone-silvestri Oct 24, 2024
27bf157
Merge branch 'main' into ss/ecco-restoring-interface
simone-silvestri Oct 24, 2024
1bbfd7b
flux form
simone-silvestri Oct 24, 2024
a3e4807
Merge branch 'main' into ss/ecco-restoring-interface
simone-silvestri Oct 28, 2024
df7bed2
NearestNeighborInpainting
simone-silvestri Oct 28, 2024
701c3d1
some more comments plus fix tests
simone-silvestri Oct 28, 2024
644370b
check inpainting
simone-silvestri Oct 28, 2024
9346a64
remove space
simone-silvestri Oct 28, 2024
defa077
bugfix
simone-silvestri Oct 28, 2024
819142c
bugfix
simone-silvestri Oct 28, 2024
2b5af9a
fix a couple of bugs
simone-silvestri Oct 29, 2024
0c407dc
fix tests
simone-silvestri Oct 29, 2024
3bb195c
corrected tests
simone-silvestri Oct 29, 2024
862d77a
setting
simone-silvestri Oct 29, 2024
7bd6559
bugfix
simone-silvestri Oct 30, 2024
5ba0558
Merge branch 'main' into ss/ecco-restoring-interface
simone-silvestri Nov 1, 2024
f24e672
Merge branch 'main' into ss/ecco-restoring-interface
simone-silvestri Nov 4, 2024
1dc6f88
try setting the runtime version
simone-silvestri Nov 5, 2024
72cfb20
whoops
simone-silvestri Nov 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Common test setup file to make stand-alone tests easy
include("runtests_setup.jl")

using CUDA

test_group = get(ENV, "TEST_GROUP", :all)
test_group = Symbol(test_group)

Expand All @@ -18,6 +20,7 @@ end

if test_group == :init || test_group == :all
using CUDA
CUDA.set_runtime_version!(v"12.6"; local_toolkit = true)
CUDA.precompile_runtime()

# Download bathymetry data
Expand Down Expand Up @@ -46,7 +49,7 @@ if test_group == :turbulent_fluxes || test_group == :all
end

if test_group == :bathymetry || test_group == :all
include("test_bathymetry.jl")
CUDA.set_runtime_version!(v"12.6"; local_toolkit = true)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you may want to keep the test file though

end

if test_group == :simulations || test_group == :all
Expand Down
Loading