Hugo 0.53, hugo-academic 3.3.0
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
public
|
||||
resources
|
@@ -1,7 +1,7 @@
|
||||
dist: trusty
|
||||
|
||||
install:
|
||||
- wget -q https://github.com/gohugoio/hugo/releases/download/v0.45/hugo_0.45_Linux-64bit.tar.gz -O hugo.tar.gz
|
||||
- wget -q https://github.com/gohugoio/hugo/releases/download/v0.53/hugo_0.53_Linux-64bit.tar.gz -O hugo.tar.gz
|
||||
- tar -xvf hugo.tar.gz
|
||||
- mkdir -vp ~/bin
|
||||
- mv -v hugo ~/bin/hugo
|
||||
|
256
config.toml
256
config.toml
@@ -1,11 +1,20 @@
|
||||
# Configuration of Academic
|
||||
# Documentation: https://sourcethemes.com/academic/
|
||||
#
|
||||
# This file is formatted using TOML syntax - learn more at https://learnxinyminutes.com/docs/toml/
|
||||
# Each configuration section is defined by a name in square brackets (e.g. `[outputs]`).
|
||||
|
||||
# The URL of your website.
|
||||
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
|
||||
baseurl = "https://cwpearson.github.io/" # End your URL with a `/` trailing slash, e.g. `https://example.com/`.
|
||||
baseurl = "https://cwpearson.github.io/"
|
||||
|
||||
# Title of your site
|
||||
title = "Carl Pearson"
|
||||
|
||||
# Your copyright notice - appears in site footer.
|
||||
# To display a copyright symbol, type `©`.
|
||||
copyright = "© 2018 Carl Pearson"
|
||||
|
||||
theme = "academic"
|
||||
enableEmoji = true
|
||||
footnotereturnlinkcontents = "<sup>^</sup>"
|
||||
@@ -21,26 +30,27 @@ googleAnalytics = "UA-54975774-2"
|
||||
|
||||
# Default language to use (if you setup multilingual support)
|
||||
defaultContentLanguage = "en"
|
||||
hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
|
||||
defaultContentLanguageInSubdir = false
|
||||
|
||||
# Get last modified date for content from Git?
|
||||
enableGitInfo = false
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "CSS" ]
|
||||
home = [ "HTML", "CSS", "RSS", "JSON" ]
|
||||
section = [ "HTML", "RSS" ]
|
||||
|
||||
# Configure BlackFriday Markdown rendering.
|
||||
# See: https://gohugo.io/readfiles/bfconfig/
|
||||
# See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
|
||||
[blackfriday]
|
||||
hrefTargetBlank = true # `true` opens external links in a new tab.
|
||||
fractions = true # `false` disables smart fractions (e.g. 5/12 formatted as a fraction).
|
||||
smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions).
|
||||
smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions).
|
||||
extensions = ["backslashLineBreak"]
|
||||
|
||||
|
||||
[params]
|
||||
# Color theme.
|
||||
# Choose from `default`, `ocean`, `forest`, or `coffee`.
|
||||
color_theme = "default"
|
||||
|
||||
# Font style.
|
||||
# Choose from `default`, `classic`, or `playfair`.
|
||||
font = "default"
|
||||
# AUTHOR SETUP
|
||||
|
||||
# Your details.
|
||||
name = "Carl Pearson"
|
||||
@@ -50,41 +60,84 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
# Separate multiple entries with a comma, using the form: `[ {name="Org1", url=""}, {name="Org2", url=""} ]`.
|
||||
organizations = [ { name = "University of Illinois Urbana-Champaign", url = "http://www.ece.illinois.edu/" } ]
|
||||
|
||||
gravatar = false # Get your avatar from Gravatar.com? (true/false)
|
||||
avatar = "headshot.jpg"
|
||||
gravatar = false # Get your avatar from Gravatar.com? (true/false)
|
||||
avatar = "headshot.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
|
||||
|
||||
# Details for the Contact Widget
|
||||
email = "pearson@illinois.edu"
|
||||
address = "222 Coordinated Science Lab, 1308 W. Main St., Urbana, Illinois 61801"
|
||||
office_hours = "Face-to-face by appointment"
|
||||
office_hours = "email to book an appointment"
|
||||
phone = ""
|
||||
skype = ""
|
||||
telegram = ""
|
||||
keybase = "" # Your keybase.io username.
|
||||
|
||||
# Enable Keybase in Contact section by entering your keybase.io username.
|
||||
keybase = ""
|
||||
# Enter an optional link for booking appointments (e.g. calendly.com).
|
||||
appointment_url = ""
|
||||
|
||||
# Discussion link (e.g. link to a forum, mailing list, or chat).
|
||||
# Uncomment line below to use.
|
||||
# discussion = { name = "Discuss", url = "https://discourse.gohugo.io" }
|
||||
|
||||
# Enable/disable map in Contact widget.
|
||||
# To show your address on a map in the contact widget, you need to enter your latitude, longitude and choose
|
||||
# a map provider below.
|
||||
# To use Google Maps, set `map = 1` and enter your API key that can be obtained here:
|
||||
# https://developers.google.com/maps/documentation/javascript/get-api-key
|
||||
# To use OpenStreetMap tiles, set `map = 2`.
|
||||
# To use OpenStreetMap on a high traffic site, set `map = 3` and enter your API key that can be obtained here:
|
||||
# https://www.mapbox.com/studio/account/tokens
|
||||
# To get your coordinates, right-click on Google Maps and choose "What's here?". The coords will show up at the bottom.
|
||||
#
|
||||
# Map provider:
|
||||
# 0: No map
|
||||
# 1: Google Maps
|
||||
# 2: OpenStreetMap (Mapnik)
|
||||
# 3: OpenStreetMap (Mapbox)
|
||||
map = 0
|
||||
map_api_key = ""
|
||||
latitude = "40.114879"
|
||||
longitude = "-88.226713"
|
||||
zoom = 15
|
||||
|
||||
# SITE SETUP
|
||||
|
||||
# Color theme.
|
||||
# Choose from `default`, `ocean`, `forest`, `dark`, `apogee`, `1950s`, `coffee`, `cupcake`.
|
||||
color_theme = "default"
|
||||
# Enable users to switch between day and night mode?
|
||||
day_night = true
|
||||
|
||||
# Font style.
|
||||
# Choose from `default`, `classic`, or `playfair`.
|
||||
font = "default"
|
||||
|
||||
# Description for social sharing and search engines. If undefined, author role is used in place.
|
||||
description = ""
|
||||
|
||||
# Default image for social sharing and search engines. Place image in `static/img/` folder and specify image name here.
|
||||
sharing_image = ""
|
||||
|
||||
# Twitter username (without @). Used when a vistor shares your site on Twitter.
|
||||
twitter = ""
|
||||
|
||||
# Diplay 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 = ""
|
||||
|
||||
# Enable Google Maps by entering your API key, latitude, and longitude.
|
||||
# Get your API key: https://developers.google.com/maps/documentation/javascript/get-api-key
|
||||
# Get your coords: Right-click place on Google Maps. Select 'What's here?'. At the bottom is a card with the coords.
|
||||
# Disable Google Maps by clearing all three options to "".
|
||||
google_maps_api_key = ""
|
||||
latitude = "40.114879"
|
||||
longitude = "-88.226713"
|
||||
|
||||
# Date format (refer to Go's date format: http://flippinggodateformat.com )
|
||||
# Date and time format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "Mon, Jan 2, 2006"
|
||||
# Examples: "3:04 pm" or "15:04"
|
||||
time_format = "3:04 PM"
|
||||
|
||||
# Show estimated reading time for posts?
|
||||
reading_time = true
|
||||
reading_time = false
|
||||
|
||||
# Display comment count? Requires commenting to be enabled.
|
||||
comment_count = true
|
||||
|
||||
# Display section pager for posts?
|
||||
# Display next/previous section pager?
|
||||
section_pager = false
|
||||
|
||||
# Enable global LaTeX math rendering?
|
||||
@@ -100,9 +153,7 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
#
|
||||
# highlight_languages
|
||||
# Add support for highlighting additional languages. Support for
|
||||
# languages mentioned here will be included in all pages. You
|
||||
# can also set this variable for a particular page in that
|
||||
# page's preamble.
|
||||
# languages mentioned here will be included in all pages.
|
||||
#
|
||||
# Example: highlight_languages = ["go", "lisp", "ocaml"]
|
||||
#
|
||||
@@ -113,24 +164,22 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
#
|
||||
# Example: highlight_style = "github-gist"
|
||||
#
|
||||
# highlight_version
|
||||
# Choose the version of highlight.js you want. Setting this
|
||||
# option in a page's preamble has no effect.
|
||||
#
|
||||
# Example: highlight_version = "9.9.0"
|
||||
#
|
||||
# For the list of supported languages, styles, and versions, see:
|
||||
# For the list of supported languages and styles, see:
|
||||
# https://cdnjs.com/libraries/highlight.js/
|
||||
#
|
||||
# For more info on the highlighting options, see:
|
||||
# https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options
|
||||
# https://sourcethemes.com/academic/docs/writing-markdown-latex/#highlighting-options
|
||||
highlight = true
|
||||
highlight_languages = []
|
||||
# highlight_style = "github"
|
||||
# highlight_version = "9.9.0"
|
||||
|
||||
# Enable native social sharing buttons?
|
||||
sharing = true
|
||||
sharing = false
|
||||
|
||||
# Privacy pack
|
||||
# Show a cookie consent message to visitors
|
||||
# Anonymize IP in Google Analytics (if enabled)
|
||||
privacy_pack = true
|
||||
|
||||
# Link custom CSS and JS assets
|
||||
# (relative to /static/css and /static/js respectively)
|
||||
@@ -142,60 +191,106 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
# The index of the publication type in the list is used as its unique numerical identifier.
|
||||
# The numeric ID is used in a publication's frontmatter to categorize it.
|
||||
# The language can be edited below.
|
||||
# For multi-lingual sites, copy this block to each language section at the end of this file.
|
||||
# For multilingual sites, `publication_types` can be copied to each language section at the end of this file and
|
||||
# translated.
|
||||
publication_types = [
|
||||
'Uncategorized', # 0
|
||||
'Conference proceedings', # 1
|
||||
'Journal', # 2
|
||||
'Work in progress', # 3
|
||||
'Technical report', # 4
|
||||
'Conference paper', # 1
|
||||
'Journal article', # 2
|
||||
'Manuscript', # 3
|
||||
'Report', # 4
|
||||
'Book', # 5
|
||||
'Book chapter' # 6
|
||||
]
|
||||
'Book section' # 6
|
||||
]
|
||||
|
||||
# Configuration of talk pages.
|
||||
[params.talks]
|
||||
# Show talk time?
|
||||
time = true
|
||||
|
||||
# Configuration of publication pages.
|
||||
[params.publications]
|
||||
# Date format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "January, 2006"
|
||||
|
||||
# Configuration of project pages.
|
||||
[params.projects]
|
||||
# List publications and talks related to the project?
|
||||
list_children = true
|
||||
|
||||
# Post list format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = Stream
|
||||
post_format = 2
|
||||
|
||||
# Publication list format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = APA
|
||||
# 3 = MLA
|
||||
# 4 = Stream
|
||||
publication_format = 4
|
||||
|
||||
# Talk list format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = Stream
|
||||
talk_format = 2
|
||||
|
||||
# Social/Academic Networking
|
||||
#
|
||||
# Icon pack "fa" includes the following social network icons:
|
||||
# Icon pack "fab" includes the following social network icons:
|
||||
#
|
||||
# twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
|
||||
# youtube, instagram, soundcloud
|
||||
#
|
||||
# For email icon, use "fa" icon pack, "envelope" icon, and
|
||||
# For email icon, use "fas" icon pack, "envelope" icon, and
|
||||
# "mailto:your@email.com" as the link.
|
||||
#
|
||||
# Full list: https://fortawesome.github.io/Font-Awesome/icons/
|
||||
# Full list: https://fontawesome.com/icons
|
||||
#
|
||||
# Icon pack "ai" includes the following academic network icons:
|
||||
# Icon pack "ai" includes the following academic icons:
|
||||
#
|
||||
# google-scholar, arxiv, orcid, researchgate, mendeley
|
||||
# cv, google-scholar, arxiv, orcid, researchgate, mendeley
|
||||
#
|
||||
# Full list: https://jpswalsh.github.io/academicons/
|
||||
|
||||
[[params.social]]
|
||||
icon = "envelope"
|
||||
icon_pack = "fa"
|
||||
link = "mailto:pearson@illinois.edu"
|
||||
icon_pack = "fas"
|
||||
link = "mailto:pearson@illinois.edu" # For a direct email link, use "mailto:test@example.org".
|
||||
|
||||
# [[params.social]]
|
||||
# icon = "twitter"
|
||||
# icon_pack = "fab"
|
||||
# link = "https://twitter.com/GeorgeCushen"
|
||||
|
||||
[[params.social]]
|
||||
icon = "google-scholar"
|
||||
icon_pack = "ai"
|
||||
link = "//scholar.google.com/citations?user=K2nzqpYAAAAJ"
|
||||
link = "https://scholar.google.co.uk/citations?user=K2nzqpYAAAAJ"
|
||||
|
||||
[[params.social]]
|
||||
icon = "github"
|
||||
icon_pack = "fa"
|
||||
link = "//github.com/cwpearson"
|
||||
|
||||
[[params.social]]
|
||||
icon = "linkedin"
|
||||
icon_pack = "fa"
|
||||
link = "//www.linkedin.com/in/carl-pearson-b133733a/"
|
||||
link = "https://github.com/cwpearson"
|
||||
|
||||
# Link to a PDF of your resume/CV from the About widget.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# [[params.social]]
|
||||
# icon = "cv"
|
||||
# icon_pack = "ai"
|
||||
# link = "files/cv.pdf"
|
||||
|
||||
# Navigation Links
|
||||
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
|
||||
# desired widget in your `content/home/` folder.
|
||||
# The weight parameter defines the order that the links will appear in.
|
||||
[params.menus]
|
||||
# Align the main menu to the right of the page? (true/false)
|
||||
align_right = true
|
||||
|
||||
[[menu.main]]
|
||||
name = "Home"
|
||||
@@ -242,6 +337,29 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
url = "#contact"
|
||||
weight = 9
|
||||
|
||||
# Link to a PDF of your resume/CV from the menu.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# [[menu.main]]
|
||||
# name = "CV"
|
||||
# url = "files/cv.pdf"
|
||||
# weight = 7
|
||||
|
||||
# Search.
|
||||
[params.search]
|
||||
# Search provider:
|
||||
# 0: No search engine
|
||||
# 1: Built-in (Fuse)
|
||||
# 2: Algolia (https://www.algolia.com)
|
||||
engine = 1
|
||||
|
||||
# Configuration of Algolia search engine.
|
||||
# Paste the values from your Algolia dashboard.
|
||||
[params.search.algolia]
|
||||
app_id = ""
|
||||
api_key = ""
|
||||
index_name = ""
|
||||
show_logo = false
|
||||
|
||||
# Taxonomies.
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
@@ -250,7 +368,23 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
|
||||
# Languages
|
||||
# Create a [languages.X] block for each language you want, where X is the language ID.
|
||||
# Refer to https://sourcethemes.com/academic/docs/language/
|
||||
|
||||
# Configure the English version of the website.
|
||||
[languages.en]
|
||||
languageCode = "en-us"
|
||||
|
||||
# Uncomment the lines below to configure your website in a second language.
|
||||
#[languages.zh]
|
||||
# languageCode = "zh-Hans"
|
||||
# title = "Chinese website title..."
|
||||
# [languages.zh.params]
|
||||
# name = "Your name in Chinese..."
|
||||
# role = "Your role in Chinese..."
|
||||
# [[languages.zh.menu.main]]
|
||||
# name = "Wo"
|
||||
# url = "#about"
|
||||
# weight = 1
|
||||
|
||||
|
||||
|
||||
|
@@ -1,22 +1,39 @@
|
||||
+++
|
||||
# Recent Publications widget.
|
||||
# Note: this widget will only display if `content/publication/` contains publications.
|
||||
|
||||
date = "2018-02-06T00:00:00"
|
||||
draft = false
|
||||
# This widget displays recent publications from `content/publication/`.
|
||||
widget = "publications"
|
||||
active = true
|
||||
date = 2019-01-08T00:00:00
|
||||
|
||||
title = "Publications"
|
||||
subtitle = ""
|
||||
widget = "publications"
|
||||
|
||||
# Order that this section will appear in.
|
||||
weight = 11
|
||||
weight = 20
|
||||
|
||||
# Number of publications to list.
|
||||
count = 10
|
||||
|
||||
# Show publication details (such as abstract)? (true/false)
|
||||
detailed_list = false
|
||||
# List format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = APA
|
||||
# 3 = MLA
|
||||
# 4 = Stream
|
||||
list_format = 4
|
||||
|
||||
# Filter by publication type.
|
||||
# -1: Any
|
||||
# 0: Uncategorized
|
||||
# 1: Conference proceedings
|
||||
# 2: Journal
|
||||
# 3: Work in progress
|
||||
# 4: Technical report
|
||||
# 5: Book
|
||||
# 6: Book chapter
|
||||
publication_type = "-1"
|
||||
|
||||
# Exclude publications that are shown in the Selected Publications widget?
|
||||
exclude_selected = false
|
||||
+++
|
||||
|
||||
|
@@ -9,12 +9,12 @@ authors = ["Xuhao Chen", "Shengzhao Wu", "Li-Wen Chang", "Wei-Sheng Huang", "Car
|
||||
# Publication type.
|
||||
# Legend:
|
||||
# 0 = Uncategorized
|
||||
# 1 = Conference proceedings
|
||||
# 2 = Journal
|
||||
# 3 = Work in progress
|
||||
# 4 = Technical report
|
||||
# 1 = Conference paper
|
||||
# 2 = Journal article
|
||||
# 3 = Manuscript
|
||||
# 4 = Report
|
||||
# 5 = Book
|
||||
# 6 = Book chapter
|
||||
# 6 = Book section
|
||||
publication_types = ["1"]
|
||||
|
||||
# Publication name and optional abbreviated version.
|
||||
@@ -25,8 +25,28 @@ publication_short = ""
|
||||
abstract = "Many-core accelerators, e.g. GPUs, are widely used for accelerating general-purpose compute kernels. With the SIMT execution model, GPUs can hide memory latency through massive multithreading for many regular applications. To support more applications with irregular memory access pattern, cache hierarchy is introduced to GPU architecture to capture input data sharing and mitigate the effect of irregular accesses. However, GPU caches suffer from poor efficiency due to severe contention, which makes it difficult to adopt heuristic management policies, and also limits system performance and energy-efficiency. We propose an adaptive cache management policy specifically for many-core accelerators. The tag array of L2 cache is enhanced with extra bits to track memory access history, an thus the locality information is captured and provided to L1 cache as heuristics to guide its run-time bypass and insertion decisions. By preventing un-reused data from polluting the cache and alleviating contention, cache efficiency is significantly improved. As a result, the system performance is improved by 31% on average for cache sensitive benchmarks, compared to the baseline GPU architecture."
|
||||
abstract_short = ""
|
||||
|
||||
# Does this page contain LaTeX math? (true/false)
|
||||
math = false
|
||||
# Is this a selected publication? (true/false)
|
||||
selected = false
|
||||
|
||||
# Projects (optional).
|
||||
# Associate this publication with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `projects = ["deep-learning"]` references
|
||||
# `content/project/deep-learning/index.md`.
|
||||
# Otherwise, set `projects = []`.
|
||||
projects = []
|
||||
|
||||
# Slides (optional).
|
||||
# Associate this publication 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 = ""
|
||||
|
||||
# Tags (optional).
|
||||
# Set `tags = []` for no tags, or use the form `tags = ["A Tag", "Another Tag"]` for one or more tags.
|
||||
tags = []
|
||||
|
||||
# Does this page require source code highlighting? (true/false)
|
||||
highlight = true
|
||||
@@ -34,9 +54,6 @@ highlight = true
|
||||
# Featured image thumbnail (optional)
|
||||
image_preview = ""
|
||||
|
||||
# Is this a selected publication? (true/false)
|
||||
selected = false
|
||||
|
||||
# Links (optional)
|
||||
url_pdf = "pdf/2014chen.pdf"
|
||||
url_preprint = ""
|
||||
@@ -48,10 +65,24 @@ url_video = ""
|
||||
url_poster = ""
|
||||
url_source = ""
|
||||
|
||||
# Custom links (optional).
|
||||
# Uncomment line below to enable. For multiple links, use the form `[{...}, {...}, {...}]`.
|
||||
# url_custom = [{name = "Custom Link", url = "http://example.org"}]
|
||||
|
||||
# Digital Object Identifier (DOI)
|
||||
doi = ""
|
||||
|
||||
# Does this page contain LaTeX math? (true/false)
|
||||
math = false
|
||||
|
||||
# Featured image
|
||||
# Place your image in the `static/img/` folder and reference its filename below, e.g. `image = "example.jpg"`.
|
||||
[header]
|
||||
image = ""
|
||||
caption = ""
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
|
||||
+++
|
||||
|
@@ -7,8 +7,7 @@ authors = ["Adbul Dakkak", "Carl Pearson", "Cheng Li"]
|
||||
|
||||
abstract = 'The popularity of computer science classes offered through Massive Open On-line Courses (MOOCs) creates both opportunities and challenges. Programming-based classes need to provide consistent development infrastructures that are both scalable and user friendly to students. The \"Heterogeneous Parallel Programming\" class offered through Coursera teaches GPU programming and encountered these problems. We developed WebGPU - an online GPU development platform - providing students with a user friendly scalable GPU computing platform throughout the course. It has been used as the CUDA, OpenACC, and OpenCL programming environment for large Coursera courses, short-running summer schools, and traditional semester-long graduate and undergraduate courses. WebGPU has since replaced our traditional development infrastructure for the GPU classes offered at UIUC. This paper presents the original, revised, and upcoming WebGPU designs that address the requirements and challenges of offering sophisticated computing resources to a large, quickly-varying number of students.'
|
||||
|
||||
image = ""
|
||||
image_preview = ""
|
||||
|
||||
math = false
|
||||
publication = "*Parallel and Distributed Processing Symposium Workshops, 2016 IEEE International.* IEEE, 2016."
|
||||
|
||||
@@ -20,4 +19,14 @@ url_slides = ""
|
||||
url_video = ""
|
||||
|
||||
selected = true
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
+++
|
@@ -7,8 +7,7 @@ authors = ["Mert Hidayetoglu", "Carl Pearson", "Levent Gurel", "Wen-mei Hwu", "
|
||||
|
||||
abstract = 'We report scalable solutions of inverse-scattering problems with the distorted Born iterative method (DBIM) on large number of computing nodes. Distributing forward solutions does not scale well when the number of illuminations is not greater than the number of computing nodes. As a remedy, we distribute both forward solutions and the corresponding forward solvers to improve granularity of DBIM solutions. This paper provides a set of solutions demonstrating good scaling of the proposed parallelization strategy up to 1,024 computing nodes, employing 16,394 processing cores in total.'
|
||||
|
||||
image = ""
|
||||
image_preview = ""
|
||||
|
||||
math = false
|
||||
publication = "Computing and Electromagnetics International Workshop (CEM), 2017"
|
||||
|
||||
@@ -20,4 +19,14 @@ url_slides = ""
|
||||
url_video = ""
|
||||
|
||||
selected = true
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
+++
|
@@ -7,8 +7,6 @@ authors = ["Wen-mei Hwu", "Mert Hidayetoglu", "Weng Cho Chew", "Carl Pearson", "
|
||||
|
||||
abstract = 'In this paper, we present our view of massively-parallel heterogeneous computing for solving large scientific problems. We start by observing that computing has been the primary driver of major innovations since the beginning of the 21st century. We argue that this is the fruit of decades of progress in computing methods, technology, and systems. A high-level analysis on out-scaling and up-scaling on large supercomputers is given through a time-domain wave-scattering simulation example. The importance of heterogeneous node architectures for good up-scaling is highlighted. A case for low-complexity algorithms is made for continued scale-out towards exascale systems.'
|
||||
|
||||
image = ""
|
||||
image_preview = ""
|
||||
math = false
|
||||
publication = "*Computing and Electromagnetics International Workshop.* IEEE, 2017."
|
||||
|
||||
@@ -20,4 +18,14 @@ url_slides = ""
|
||||
url_video = ""
|
||||
|
||||
selected = true
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
+++
|
@@ -49,9 +49,13 @@ url_poster = ""
|
||||
url_source = ""
|
||||
|
||||
# Featured image
|
||||
# Place your image in the `static/img/` folder and reference its filename below, e.g. `image = "example.jpg"`.
|
||||
[header]
|
||||
image = ""
|
||||
caption = ""
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
|
||||
+++
|
||||
|
@@ -49,9 +49,13 @@ url_poster = ""
|
||||
url_source = ""
|
||||
|
||||
# Featured image
|
||||
# Place your image in the `static/img/` folder and reference its filename below, e.g. `image = "example.jpg"`.
|
||||
[header]
|
||||
image = ""
|
||||
caption = ""
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
|
||||
+++
|
||||
|
@@ -7,8 +7,7 @@ authors = ["Mert Hidayetoglu", "Carl Pearson", "Weng Cho Chew", "Levent Gurel",
|
||||
|
||||
abstract = ''
|
||||
|
||||
image = ""
|
||||
image_preview = ""
|
||||
|
||||
math = false
|
||||
publication = "*Applied and Computational Electromagnetics Symposium, 2017.* For the special session: Big Data Aspects"
|
||||
|
||||
@@ -20,4 +19,14 @@ url_slides = ""
|
||||
url_video = ""
|
||||
|
||||
selected = true
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
+++
|
@@ -55,9 +55,13 @@ url_poster = ""
|
||||
url_source = ""
|
||||
|
||||
# Featured image
|
||||
# Place your image in the `static/img/` folder and reference its filename below, e.g. `image = "example.jpg"`.
|
||||
[header]
|
||||
image = ""
|
||||
caption = ""
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
|
||||
+++
|
||||
|
@@ -49,9 +49,13 @@ url_poster = ""
|
||||
url_source = ""
|
||||
|
||||
# Featured image
|
||||
# Place your image in the `static/img/` folder and reference its filename below, e.g. `image = "example.jpg"`.
|
||||
[header]
|
||||
image = ""
|
||||
caption = ""
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
[image]
|
||||
# Caption (optional)
|
||||
caption = ""
|
||||
|
||||
# Focal point (optional)
|
||||
# Options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
focal_point = ""
|
||||
|
||||
+++
|
||||
|
@@ -1,12 +1,17 @@
|
||||
+++
|
||||
title = "Publications"
|
||||
date = "2018-02-06T00:00:00Z"
|
||||
math = false
|
||||
highlight = false
|
||||
date = 2019-01-08T00:00:00
|
||||
|
||||
# List format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = APA
|
||||
# 3 = MLA
|
||||
# 4 = Stream
|
||||
list_format = 3
|
||||
|
||||
# Optional featured image (relative to `static/img/` folder).
|
||||
[header]
|
||||
image = ""
|
||||
caption = ""
|
||||
|
||||
+++
|
||||
|
Submodule themes/academic updated: efc201cf0c...6cac50ecd6
Reference in New Issue
Block a user