Skip to content

Commit

Permalink
Troubleshooting info
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Barth committed Sep 20, 2023
1 parent e85114e commit 06f7753
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,14 @@ Convolutional neural networks can require "a lot" of GPU memory. These parameter
* use fewer layers (e.g. `enc_nfilter_internal` = [16,24,36] or [16,24])
* use less filters (reduce the values of the optional parameter enc_nfilter_internal)
* use a smaller domain or lower resolution


## Troubleshooting

If you get the error about `Scalar indexing is disallowed` with Flux 0.14 you need to load (and possibly install `cuDNN`) before calling a function in DINCAE.jl

``` julia
using cuDNN
using DINCAE
# ...
```

1 comment on commit 06f7753

@Alexander-Barth
Copy link
Member Author

Choose a reason for hiding this comment

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

@ctroupin for your information

Please sign in to comment.