Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GrayScottSyclSetup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeursIntensifs
GrayScott
GrayScottSyclSetup
Commits
48a305b5
Commit
48a305b5
authored
8 months ago
by
CHAMONT David
Browse files
Options
Downloads
Patches
Plain Diff
Few fixes.
parent
6a44c09a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+2
-2
2 additions, 2 deletions
README.md
with
2 additions
and
2 deletions
README.md
+
2
−
2
View file @
48a305b5
...
...
@@ -51,7 +51,7 @@ Given the pixel row `r`, and the pixel column `c`, one iteration may be written
for ( dr : -1, 0, 1 )
for ( dc : -1, 0, 1 )
full_u += u[r+dr,c+dc] - u[r,c]
full_v +=
u
[r+dr,c+dc] -
u
[r,c]
full_v +=
v
[r+dr,c+dc] -
v
[r,c]
uvv = u[r,c]*v[r,c]*v[r,c]
du = DIFFUSION_RATE_U*full_u - uvv + FEED_RATE*(1.0 - u)
...
...
@@ -62,7 +62,7 @@ v[r,c] += dv*DT;
```
Have a look at the code in the directory
`GrayScottSeq/src/main.cpp`
.
Try to
run it with the commands below. The value printed at the end
Understand and
run it with the commands below. The value printed at the end
is juste there as a first check that the code is working as expected,
when you will try to parallelize it.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment