Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Dec 1, 2024
1 parent 6e93573 commit 122f445
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions GraphNeuralNetworks/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ dest_guides_dir = joinpath(@__DIR__, "src/other")
gnngraphs_guides_dir = joinpath(@__DIR__, "../../GNNGraphs/docs/src/guides")
gnnlib_guides_dir = joinpath(@__DIR__, "../../GNNlib/docs/src/guides")
for file in readdir(gnngraphs_guides_dir)
cp(joinpath(gnngraphs_guides_dir, file), joinpath(dest_guides_dir, file))
cp(joinpath(gnngraphs_guides_dir, file), joinpath(dest_guides_dir, file), force=true)
end
for file in readdir(gnnlib_guides_dir)
cp(joinpath(gnnlib_guides_dir, file), joinpath(dest_guides_dir, file))
cp(joinpath(gnnlib_guides_dir, file), joinpath(dest_guides_dir, file), force=true)
end

makedocs(;
modules = [GraphNeuralNetworks],
doctest = false,
doctest = false, # TODO: enable doctest
clean = true,
plugins = [interlinks],
format = Documenter.HTML(; mathengine, prettyurls, assets = assets, size_threshold=nothing),
Expand Down
7 changes: 3 additions & 4 deletions GraphNeuralNetworks/test/test_module.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,15 @@ export mean, randn, SparseArrays, AbstractSparseMatrix
export Flux, gradient, Dense, Chain, relu
BatchNorm, LayerNorm, Dropout, Parallel,
gpu_device, cpu_device, get_device,
CPUDevice, CUDADevice, AMDGPUDevice, MetalDevice,
gpu_backend

CPUDevice, CUDADevice, AMDGPUDevice, MetalDevice

# from Graphs.jl
export random_regular_graph, erdos_renyi

# from this module
export D_IN, D_OUT, GRAPH_TYPES, TEST_GRAPHS,
test_gradients, finitediff_withgradient,
check_equal_leaves
check_equal_leaves, gpu_backend


const D_IN = 3
Expand Down

0 comments on commit 122f445

Please sign in to comment.