Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Org-modized
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Org mode and Guix tutorial - Guix HPC Workshop
studies
Org-modized
Commits
b7cd620d
Commit
b7cd620d
authored
1 year ago
by
FELŠÖCI Marek
Browse files
Options
Downloads
Patches
Plain Diff
Starting level
parent
56075e5f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
study.org
+4
-28
4 additions, 28 deletions
study.org
with
4 additions
and
28 deletions
study.org
+
4
−
28
View file @
b7cd620d
...
...
@@ -435,14 +435,7 @@ specifies the compression level to use.
#+NAME: benchmarks-csv
#+begin_src csv :eval never :tangle benchmarks.csv
5000,high
5000,low
10000,high
10000,low
15000,high
15000,low
20000,high
20000,low
#+end_src
We remind the reader that to rerun the benchmarks presented in the study, one
...
...
@@ -655,7 +648,7 @@ with increasing size of the target linear system.
#+NAME: get-ram-plot
#+HEADER: :noweb yes :exports results :results silent
#+begin_src R
<<code-ram>>
#+end_src
#+CAPTION: RAM usage peaks of sequential runs of =minisolver= on linear systems
...
...
@@ -676,34 +669,17 @@ is defined in this section. However, it is possible to run it in its entirety by
evaluating Linsting [[get-ram-plot]].
#+begin_src R
library(svglite)
library(ggplot2)
data <- read.csv(file = "results.csv", header = FALSE)
colnames(data) <- c("size", "compression", "time", "ram", "epsilon")
#+end_src
Except that here, the Y-axis represents the RAM usage in mibibytes (MiB).
#+begin_src R
plot <- ggplot(
data = data,
mapping = aes(x = size, y = ram, color = compression)
) +
geom_line() +
geom_point(size = 2.5) +
scale_x_continuous(name = "# Unknowns (N)") +
scale_y_continuous(name = "RAM usage peaks [MiB]") +
labs(color = "Compression level") +
scale_color_manual(
values = c("high" = "#F07E26", "low" = "#9B004F")
) +
theme_bw()
#+end_src
The destination file name changes too, of course.
#+begin_src R
ggsave(file = "figures/results-ram.pdf", plot = plot, width = 5, height = 3)
#+end_src
* Conclusion
...
...
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