Skip to content

Commit

Permalink
fixed the last-minute screwup and added table w/ some data types
Browse files Browse the repository at this point in the history
  • Loading branch information
ostueker committed Sep 27, 2019
1 parent cdb635c commit 26218d0
Showing 1 changed file with 42 additions and 13 deletions.
55 changes: 42 additions & 13 deletions 2019-09-27-High-Memory-Gaussian.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@
left: 2em;
bottom: 1em;
}
table {
width: 80%;
border: none;
border-collapse: collapse;
}
td,th {
border-left: 1px solid #000;
padding-left: 1em;
}
th {
border-bottom: 1px solid #000;
}
td:first-child, th:first-child {
border-left: none;
}

.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }

Expand Down Expand Up @@ -95,23 +110,29 @@
* RAM
* DRAM
* DDR1, ... DDR4 RAM
...all basically mean the same
--

...all these basically mean the same

Examples for Storage:
* Hard Disk Drives (HDD)
--
* Solid State Drives (SSD)
--
* Optical Media (CD-ROM, DVD, Bluray, ...)
--
* Flash-Memory (USB sticks)
--
* Tape

---

## Datatypes Units of storage
## Data-types and Units of storage

### A selection of common data-types

name | abbr | size [bit] | size [byte]
---------------- | ------ | ---------- | -----------
character | char | 8 | 1
integer | int | 32 | 4
long integer | long | 64 | 8
floating point | float | 32 | 4
double precision | double | 64 | 8

---
## Example: Gaussian using localscatch
Expand Down Expand Up @@ -208,15 +229,23 @@
```

---
class: split-50
### Implications of using high-memory jobs: Core Equivalents
![](https://docs.computecanada.ca/mediawiki/images/c/c9/Core_equivalent_diagram_GP.png)
Core Equivalent diagram

<img height="150px" src="https://docs.computecanada.ca/mediawiki/images/c/c9/Core_equivalent_diagram_GP.png" />
<br/>Core Equivalent diagram
<hr>
--
![](https://docs.computecanada.ca/mediawiki/images/1/18/Two_core_equivalents.png)
Two Core Equivalents
.column[
<img height="150px" src="https://docs.computecanada.ca/mediawiki/images/1/18/Two_core_equivalents.png" />
<br/>2 Core Equivalents
]
--
![](https://docs.computecanada.ca/mediawiki/images/9/90/Two_and_a_half_core_equivalents.png)
2.5 Core Equivalents
.column[
<img height="150px" src="https://docs.computecanada.ca/mediawiki/images/9/90/Two_and_a_half_core_equivalents.png" />
<br/>2.5 Core Equivalents
]
[https://docs.computecanada.ca/wiki/Allocations_and_resource_scheduling](https://docs.computecanada.ca/wiki/Allocations_and_resource_scheduling#What_is_a_core_equivalent_and_how_is_it_used_by_the_scheduler.3F)
---

## XKCD #2207 "Math Work"
Expand Down

0 comments on commit 26218d0

Please sign in to comment.