Last active
December 26, 2015 17:19
-
-
Save tonussi/7186106 to your computer and use it in GitHub Desktop.
thread level parallelism
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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