Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
luraess committed Oct 26, 2023
1 parent f0b9140 commit bbb59b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions exercise-notebooks/lecture6_ex1.jl
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ Write the corresponding function `diffusion2D_step!` to compute a time step usin
#nb # > 💡 hint: To verify that it does the right computations, you can launch `diffusion2D()`.
#md # \note{**hint**: To verify that it does the right computations, you can launch `diffusion2D()`.}

#nb # > 💡 hint: Only add the `@inbounds` macro to the function once you have verified that it work as they should. Remember that outside of these exercises it can be more convenient not to use the `@inbounds` macro, but to deactivate bounds checking instead globally for high performance runs by calling julia as follows : `julia --check-bounds=no ...`
#md # \note{**hint**: Only add the `@inbounds` macro to the function once you have verified that it work as they should. Remember that outside of these exercises it can be more convenient not to use the `@inbounds` macro, but to deactivate bounds checking instead globally for high performance runs by calling julia as follows : `julia --check-bounds=no ...`}
#nb # > 💡 hint: Only add the `@inbounds` macro to the function once you have verified that it work as they should.`
#md # \note{**hint**: Only add the `@inbounds` macro to the function once you have verified that it work as they should.`}

#-
## solution
Expand Down
2 changes: 1 addition & 1 deletion exercise-notebooks/notebooks/lecture6_ex1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@
{
"cell_type": "markdown",
"source": [
"> 💡 hint: Only add the `@inbounds` macro to the function once you have verified that it work as they should. Remember that outside of these exercises it can be more convenient not to use the `@inbounds` macro, but to deactivate bounds checking instead globally for high performance runs by calling julia as follows : `julia --check-bounds=no ...`"
"> 💡 hint: Only add the `@inbounds` macro to the function once you have verified that it work as they should.`"
],
"metadata": {}
},
Expand Down
4 changes: 2 additions & 2 deletions website/_literate/lecture6_ex1_web.jl
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ Write the corresponding function `diffusion2D_step!` to compute a time step usin
#nb # > 💡 hint: To verify that it does the right computations, you can launch `diffusion2D()`.
#md # \note{**hint**: To verify that it does the right computations, you can launch `diffusion2D()`.}

#nb # > 💡 hint: Only add the `@inbounds` macro to the function once you have verified that it work as they should. Remember that outside of these exercises it can be more convenient not to use the `@inbounds` macro, but to deactivate bounds checking instead globally for high performance runs by calling julia as follows : `julia --check-bounds=no ...`
#md # \note{**hint**: Only add the `@inbounds` macro to the function once you have verified that it work as they should. Remember that outside of these exercises it can be more convenient not to use the `@inbounds` macro, but to deactivate bounds checking instead globally for high performance runs by calling julia as follows : `julia --check-bounds=no ...`}
#nb # > 💡 hint: Only add the `@inbounds` macro to the function once you have verified that it work as they should.`
#md # \note{**hint**: Only add the `@inbounds` macro to the function once you have verified that it work as they should.`}

#-
## solution
Expand Down

0 comments on commit bbb59b1

Please sign in to comment.