academic 4.7.0, Hugo 0.65.3, C3SR seminar talk

This commit is contained in:
Carl Pearson
2020-02-25 07:00:02 -06:00
parent f1e70f4561
commit 1df31cc47e
7 changed files with 113 additions and 32 deletions

View File

@@ -1,7 +1,7 @@
dist: xenial dist: xenial
install: install:
- wget -q https://github.com/gohugoio/hugo/releases/download/v0.58.3/hugo_extended_0.58.3_Linux-64bit.tar.gz -O hugo.tar.gz - wget -q https://github.com/gohugoio/hugo/releases/download/v0.65.3/hugo_extended_0.65.3_Linux-64bit.tar.gz -O hugo.tar.gz
- tar -xvf hugo.tar.gz - tar -xvf hugo.tar.gz
- mkdir -vp ~/bin - mkdir -vp ~/bin
- mv -v hugo ~/bin/hugo - mv -v hugo ~/bin/hugo

View File

@@ -10,4 +10,4 @@ or if you clone without recursive, then
git submodule update --init git submodule update --init
Install [Hugo-extended 0.58.3](https://github.com/gohugoio/hugo/releases/tag/v0.58.3) Install [Hugo-extended 0.60.1](https://github.com/gohugoio/hugo/releases/tag/v0.60.1)

View File

@@ -11,12 +11,14 @@ title = "Carl Pearson"
# End your URL with a `/` trailing slash, e.g. `https://example.com/`. # End your URL with a `/` trailing slash, e.g. `https://example.com/`.
baseurl = "https://cwpearson.github.io/" baseurl = "https://cwpearson.github.io/"
# Your copyright notice - appears in site footer. # Enter a copyright notice to display in the site footer.
# To display a copyright symbol, type `©`. # To display a copyright symbol, type `©`. For current year, type `{year}`.
copyright = "© 2019 Carl Pearson" copyright = "© {year} Carl Pearson"
# Enable analytics by entering your Google Analytics tracking ID
googleAnalytics = "UA-54975774-2" ############################
## Advanced options below ##
############################
# Name of Academic theme folder in `themes/`. # Name of Academic theme folder in `themes/`.
theme = "academic" theme = "academic"
@@ -47,13 +49,16 @@ ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "
mediaType = "application/manifest+json" mediaType = "application/manifest+json"
rel = "manifest" rel = "manifest"
# Configure BlackFriday Markdown rendering. [markup]
# See: https://gohugo.io/getting-started/configuration/#configure-blackfriday defaultMarkdownHandler = "goldmark"
[blackfriday] [markup.goldmark]
hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424 [markup.goldmark.renderer]
angledQuotes = false unsafe = true # Enable user to embed HTML snippets in Markdown content.
latexDashes = true [markup.highlight]
extensions = ["backslashLineBreak"] codeFences = false # Disable Hugo's code highlighter as it conflicts with Academic's highligher.
[markup.tableOfContents]
startLevel = 2
endLevel = 3
[imaging] [imaging]
resampleFilter = "lanczos" resampleFilter = "lanczos"
@@ -66,5 +71,3 @@ extensions = ["backslashLineBreak"]
category = "categories" category = "categories"
publication_type = "publication_types" publication_type = "publication_types"
author = "authors" author = "authors"

View File

@@ -46,10 +46,6 @@ org_name = ""
# Description for social sharing and search engines. If undefined, superuser role is used in place. # Description for social sharing and search engines. If undefined, superuser role is used in place.
description = "" description = ""
# Display a logo in navigation bar rather than title (optional).
# To enable, place an image in `static/img/` and reference its filename below. To disable, set the value to "".
logo = ""
############################ ############################
## Site Features ## Site Features
############################ ############################
@@ -92,7 +88,7 @@ phone = ""
# Address # Address
# For country_code, use the 2-letter ISO code (see https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 ) # For country_code, use the 2-letter ISO code (see https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 )
address = {street = "222 Coordinated Science Lab, 1308 W. Main St.", city = "Urbana", region = "IL", postcode = "61801", country = "United States", country_code = "US"} address = {street = "Coordinated Science Lab, 1308 W. Main St.", city = "Urbana", region = "IL", postcode = "61801", country = "United States", country_code = "US"}
coordinates = { latitude = "40.114879", longitude = "-88.226713"} coordinates = { latitude = "40.114879", longitude = "-88.226713"}
@@ -129,9 +125,8 @@ date_format = "Jan 2, 2006"
# Examples: "3:04 pm" or "15:04" # Examples: "3:04 pm" or "15:04"
time_format = "3:04 PM" time_format = "3:04 PM"
# List delimiter (separates parts of an address) # Address format (choose from the [address_formats] list below or add you own to the list).
# Popular separators are ", " (comma), "<br>" (new line), " " (space) address_format = "en-us"
list_delimiter = ", "
############################ ############################
## Advanced ## Advanced
@@ -140,11 +135,11 @@ list_delimiter = ", "
# Get user avatars from Gravatar.com? (true/false) # Get user avatars from Gravatar.com? (true/false)
gravatar = false gravatar = false
# Align the main menu to the right of the page? (true/false) # Main menu alignment (l = left, c = center, r = right) and logo options.
menu_align_right = false main_menu = {align = "l", show_logo = true}
# Show estimated reading time for posts? (true/false) # Show estimated reading time for posts? (true/false)
reading_time = true reading_time = false
# Display next/previous section pager? (true/false) # Display next/previous section pager? (true/false)
section_pager = false section_pager = false
@@ -153,12 +148,18 @@ docs_section_pager = true # Display pager in Docs layout (e.g. tutorials)?
# Enable in-built social sharing buttons? (true/false) # Enable in-built social sharing buttons? (true/false)
sharing = true sharing = true
# Load CSS and JS plugins # Load JS plugins
# E.g. To load `/assets/css/custom.css`, set `plugins_css = ["custom"]`.
# E.g. To load `/assets/js/custom.js`, set `plugins_js = ["custom"]`. # E.g. To load `/assets/js/custom.js`, set `plugins_js = ["custom"]`.
plugins_css = []
plugins_js = [] plugins_js = []
# Available address formats.
[address_formats]
en-us = {order = ['street', 'city', 'region', 'postcode'], delimiters = [', ', ', ', ' ', '']}
en-gb = {order = ['street', 'city', 'region', 'postcode'], delimiters = [', ', ', ', ', ', '']}
de = {order = ['street', 'postcode', 'city'], delimiters = ['<br>', ' ', '']}
fr-fr = {order = ['street', 'postcode', 'city'], delimiters = ['<br>', ' ', '']}
zh = {order = ['postcode', 'region', 'city', 'street'], delimiters = [' ', ' ', ' ', '']}
# Configuration of publication pages. # Configuration of publication pages.
[publications] [publications]
# Date format (refer to https://sourcethemes.com/academic/docs/customization/#date-format ) # Date format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
@@ -197,6 +198,11 @@ plugins_js = []
shortname = "" # Paste the shortname from your Disqus dashboard. shortname = "" # Paste the shortname from your Disqus dashboard.
show_count = true # Show comment count in page header? (true/false) show_count = true # Show comment count in page header? (true/false)
# Configuration of Commento.
[comments.commento]
# If self-hosting Commento, enter its URL here (e.g. "https://commento.?.com"), otherwise leave empty.
url = ""
############################ ############################
## Search ## Search
############################ ############################
@@ -236,3 +242,10 @@ plugins_js = []
engine = 2 engine = 2
api_key = "" api_key = ""
zoom = 15 zoom = 15
############################
## Marketing
############################
[marketing]
google_analytics = "UA-54975774-2"
google_tag_manager = ""

View File

@@ -11,6 +11,7 @@ weight = 50 # Order that this section will appear.
title = "Academic Experience" title = "Academic Experience"
subtitle = "" subtitle = ""
[design] [design]
# Choose how many columns the section has. Valid values: 1 or 2. # Choose how many columns the section has. Valid values: 1 or 2.
columns = "1" columns = "1"
@@ -31,6 +32,9 @@ subtitle = ""
# Background image. # Background image.
image = "" # Name of image in `static/img/`. image = "" # Name of image in `static/img/`.
image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque. image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
image_size = "cover" # Options are `cover` (default), `contain`, or `actual` size.
image_position = "center" # Options include `left`, `center` (default), or `right`.
image_parallax = true # Use a fun parallax-like fixed background effect? true/false
# Text color (true=light or false=dark). # Text color (true=light or false=dark).
text_color_light = false text_color_light = false

View File

@@ -0,0 +1,61 @@
---
title: Node-Aware Stencil Communication for Heterogeneous Supercomputers
event: C3SR Bi-weekly Technical Seminar
event_url:
location: Coordinated Science Lab 216
address:
street: 1308 W Main St
city: Urbana
region: IL
postcode: '61801'
country: United States
summary: Optimizing Multi-GPU Stencil Communication
abstract: "High-performance distributed computing systems increasingly feature nodes that have multiple CPU sockets and multiple GPUs. The communication bandwidth between these components is non-uniform. Furthermore, these systems can expose different communication capabilities between these components. For communication-heavy applications, optimally using these capabilities is challenging and essential for performance.
This work presents approaches for automatic data placement and communication implementation for 3D stencil codes on multi-GPU nodes with non-homogeneous communication performance and capabilities. Benchmarking results in the Summit system show that choices in placement can result in a 20% improvements in single-node exchange, and communication specialization can yield a further 6x improvement in exchange time in a single node, and a 16% improvement at 1536 GPUs."
# Talk start and end times.
# End time can optionally be hidden by prefixing the line with `#`.
date: "2020-02-25T14:00:00Z"
date_end: "2020-02-25T15:00:00Z"
all_day: false
# Schedule page publish date (NOT talk date).
publishDate: "2017-01-01T00:00:00Z"
authors: ["Carl Pearson"]
tags: []
# Is this a featured talk? (true/false)
featured: true
image:
caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)'
focal_point: Right
links:
url_code: ""
url_pdf: ""
url_slides: ""
url_video: ""
# Markdown Slides (optional).
# Associate this talk with Markdown slides.
# Simply enter your slide deck's filename without extension.
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
# Otherwise, set `slides = ""`.
slides: example
# Projects (optional).
# Associate this post with one or more of your projects.
# Simply enter your project's folder or file name without extension.
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
# Otherwise, set `projects = []`.
projects:
- internal-project
# Enable math on this page?
math: true
---