Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
La programmation parallèle pour les gens
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
baptiste.coudray
La programmation parallèle pour les gens
Commits
10394433
Verified
Commit
10394433
authored
3 years ago
by
baptiste.coudray
Browse files
Options
Downloads
Patches
Plain Diff
Changed name
parent
dd39ca66
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lattice_boltzmann/lbm.fut
+7
-7
7 additions, 7 deletions
lattice_boltzmann/lbm.fut
with
7 additions
and
7 deletions
lattice_boltzmann/lbm.fut
+
7
−
7
View file @
10394433
...
...
@@ -5,7 +5,7 @@ type envelope_2d_t [n][m][ty][tx] = env.envelope_2d_t [n][m][ty][tx]
type~ side_envelope_3d_t = env.side_envelope_3d_t
type~ envelope_3d_t = env.envelope_3d_t
type~ side_envelope_3d
_f32
= {
type~ side_envelope_3d = {
east: [][][]f32, -- edge
north: [][][]f32, -- edge
north_east: [][][]f32, -- vertice
...
...
@@ -18,12 +18,12 @@ type~ side_envelope_3d_f32 = {
}
type~ envelope_3d_f32 = {
back: side_envelope_3d
_f32
,
bottom: side_envelope_3d
_f32
,
front: side_envelope_3d
_f32
,
left: side_envelope_3d
_f32
,
right: side_envelope_3d
_f32
,
top: side_envelope_3d
_f32
back: side_envelope_3d,
bottom: side_envelope_3d,
front: side_envelope_3d,
left: side_envelope_3d,
right: side_envelope_3d,
top: side_envelope_3d
}
entry get_envelope_1d [n] (xs: [n]u8) (thickness: i64) : envelope_1d_t [thickness] =
...
...
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