Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit e6676b6

Browse files
authored
Merge pull request #8 from foldfelis/refactor
Refactor
2 parents f03517e + 45251df commit e6676b6

File tree

4 files changed

+624
-30
lines changed

4 files changed

+624
-30
lines changed

.gitignore

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
1-
/Manifest.toml
2-
data
1+
# Files generated by invoking Julia with --code-coverage
2+
*.jl.cov
3+
*.jl.*.cov
4+
5+
# Files generated by invoking Julia with --track-allocation
6+
*.jl.mem
7+
8+
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
9+
# They contain absolute paths specific to the host computer, and so should not be committed
10+
deps/deps.jl
11+
deps/build.log
12+
deps/downloads/
13+
deps/usr/
14+
deps/src/
15+
16+
# Build artifacts for creating documentation generated by the Documenter package
17+
docs/build/
18+
docs/site/
19+
20+
# File generated by Pkg, the package manager, based on a corresponding Project.toml
21+
# It records a fixed state of all packages used by the project. As such, it should not be
22+
# committed for packages, but should be committed for applications that require a static
23+
# environment.
24+
Manifest.toml

Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ CUDA = "3.3"
2020
CUDAKernels = "0.3"
2121
DataDeps = "0.7"
2222
FFTW = "1.4"
23-
Fetch = "0.1"
2423
Flux = "0.12"
2524
KernelAbstractions = "0.7"
2625
MAT = "0.10"

0 commit comments

Comments
 (0)