Skip to content

Commit

Permalink
Merge pull request #134 from ArnoStrouwen/patch-10
Browse files Browse the repository at this point in the history
[skip ci] markdown headers
  • Loading branch information
ChrisRackauckas authored Jan 1, 2023
2 parents 0808d23 + 6143eb1 commit 00165b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/showcase/gpu_spde.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ plot(p1,p2,p3,layout=grid(3,1))
and see the pretty gradients. Using this 2nd order ROCK method we solve this equation in
about 2 seconds. That's okay.

<h2>Some Optimizations</h2>
## Some Optimizations

There are some optimizations that can still be done. When we do A*B as matrix multiplication,
we create another temporary matrix. These allocations can bog down the system. Instead we can
Expand Down Expand Up @@ -386,7 +386,7 @@ p3 = surface(X,Y,sol[end][:,:,3],title = "[C]")
plot(p1,p2,p3,layout=grid(3,1))
```

<h2>Making Use of GPU Parallelism</h2>
## Making Use of GPU Parallelism

That was all using the CPU. How do we make turn on GPU parallelism with
DifferentialEquations.jl? Well, you don't. DifferentialEquations.jl "doesn't have GPU bits".
Expand Down

0 comments on commit 00165b5

Please sign in to comment.