Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hmedianfilter
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
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
hpcintro
hmedianfilter
Commits
dea3270b
Commit
dea3270b
authored
3 years ago
by
Milan Jaros
Browse files
Options
Downloads
Patches
Plain Diff
fix README.md
parent
24cef938
No related branches found
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+7
-2
7 additions, 2 deletions
README.md
src/main.cpp
+1
-1
1 addition, 1 deletion
src/main.cpp
with
8 additions
and
3 deletions
README.md
+
7
−
2
View file @
dea3270b
...
...
@@ -22,6 +22,12 @@ some of the lower level details "by hand", applying simple versions of
the median filter, in which each pixel is replaced by the median of
nearby values.
Usage of the application:
`medianfilter use_case`
\
`medianfilter tests/tiny/lena_color1.bmp`
\
`medianfilter tests/small/lena_color2.bmp`
\
`medianfilter tests/primes/lena_color3.bmp`
\
`medianfilter tests/large/lena_color4.bmp`
## STEP 0: Create git repository (10%)
Your code should be forked from this repository and hosted on code.it4i.cz as a private project with access for all teachers.
...
...
@@ -47,8 +53,7 @@ Create script that automatically check correctness of your application for at le
1.
Implement time measurement for all parallel regions using omp_get_wtime().
2.
Create script for run strong scalability measurement (PBS script).
3.
Evaluate strong scalability of measured regions up to 128 threads and different thread affinity (compact, scatter, balanced, none).
4.
Evaluate behaviour for domain specific parameters of your applications (project dependent, maybe none). (Blocking implementation for this project)
5.
Prepare charts for all measurements.
4.
Prepare charts for all measurements.
## STEP 6: Presentation of your project (10%)
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
+
1
−
1
View file @
dea3270b
...
...
@@ -18,7 +18,7 @@ int main(int argc, char** args) {
//Check args
if
(
argc
<
2
)
{
printf
(
"USAGE: medianfilter lena
_gray
.bmp
\n
"
);
printf
(
"USAGE: medianfilter lena.bmp
\n
"
);
return
0
;
}
...
...
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