Skip to content

Instantly share code, notes, and snippets.

@tonussi
Last active December 26, 2015 17:19
Show Gist options
  • Select an option

  • Save tonussi/7186106 to your computer and use it in GitHub Desktop.

Select an option

Save tonussi/7186106 to your computer and use it in GitHub Desktop.
thread level parallelism
#!/bin/sh
echo "EEC"
echo "171 Parallel Architectures"
echo "John Owens"
echo "UC Davis"
mkdir -p $HOME/ipl/
cd $HOME/ipl/
for i in 1 2 3 4 5; do
echo "Downloading Instruction Level Parallelism (SLIDE $i)..."
wget http://www.nvidia.com/content/cudazone/cudau/courses/ucdavis/lectures/ilp$i.pdf
done
#!/bin/sh
echo "EEC"
echo "171 Parallel Architectures"
echo "John Owens"
echo "UC Davis"
mkdir -p $HOME/tlp/
cd $HOME/tlp/
for i in 1 2 3 4 5 6; do
echo "Downloading Thread Level Parallelism (SLIDE $i)"
wget http://www.nvidia.com/content/cudazone/cudau/courses/ucdavis/lectures/tlp$i.pdf
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment