Skip to content

Commit e5a4bfa

Browse files
committed
final sahpc2012 touches
1 parent 4c2e4ad commit e5a4bfa

File tree

3 files changed

+26
-21
lines changed

3 files changed

+26
-21
lines changed

01_Introducing_Python.ipynb

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,30 +55,31 @@
5555
"\n",
5656
"### PyHPC Tutorial on GitHub\n",
5757
"\n",
58-
"These presentation materials are part of a continuously updated tutorial on Python for High Performance Computing. To get the presentation materials as they were delivered today, please use the SC2012 tag on github. Future versions of this presentation will be found at:\n",
58+
"These presentation materials are part of a continuously updated tutorial on Python for High Performance Computing. To get the presentation materials as they were delivered today, please use the SAHPC2012 tag on github. Future versions of this presentation will be found at:\n",
5959
"\n",
6060
"https://github.com/pyhpc/pyhpc-tutorial\n",
6161
"\n",
6262
"Please set all permanent bookmarks to this URL.\n",
6363
"\n",
64-
"### Direct download of this SC2012 presentation\n",
65-
"You can download a zip or tar ball from the [github SC2012 tag](https://github.com/pyHPC/pyhpc-tutorial/tags):\n",
64+
"### Direct download of this SAHPC 2012 presentation\n",
65+
"You can download a zip or tar ball from the [github sahpc2012 tag](https://github.com/pyHPC/pyhpc-tutorial/tags):\n",
6666
"\n",
6767
"```\n",
68-
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/zipball/SC2012\n",
69-
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/tarball/SC2012\n",
68+
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/zipball/sahpc2012\n",
69+
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/tarball/sahpc2012\n",
7070
"```\n",
7171
"\n",
7272
"### \n",
7373
"2) Checkout from git\n",
7474
"\n",
7575
"```\n",
7676
"git clone https://github.com/pyhpc/pyhpc-tutorial.git\n",
77+
"git checkout sahpc2012\n",
7778
"```\n",
7879
"\n",
7980
"### Viewing the read-only version of this presentation on nbviewer: \n",
8081
"\n",
81-
"* http://nbviewer.ipython.org/urls/raw.github.com/pyhpc/pyhpc-tutorial/master/01_Introducing_Python.ipynb"
82+
"* http://nbviewer.ipython.org/urls/raw.github.com/pyhpc/pyhpc-tutorial/sahpc2012/01_Introducing_Python.ipynb"
8283
]
8384
},
8485
{
@@ -106,7 +107,7 @@
106107
"\n",
107108
" $ ipython notebook --pylab=inline\n",
108109
"\n",
109-
"If you are installing the packages yourself, Continuum Analytics (disclaimer, Travis Oliphant is CEO of this company) provides both free community as well as professional versions of the Anaconda installer, which provides all the packages you will need for this portion of the tutorial. The installer is available from the [Anaconda download page at Continuum Analytics](https://store.continuum.io/cshop/anaconda).\n",
110+
"If you are installing the packages yourself, Continuum Analytics provides both free community as well as professional versions of the Anaconda installer, which provides all the packages you will need for this portion of the tutorial. The installer is available from the [Anaconda download page at Continuum Analytics](https://store.continuum.io/cshop/anaconda).\n",
110111
"\n",
111112
"You are also welcome to use Enthought's Python Distribution (free for Academic users), available from the [EPD download page at Enthought](http://www.enthought.com/products/epd.php).\n",
112113
"\n",
@@ -600,6 +601,8 @@
600601
"### MATLAB > Python\n",
601602
"\n",
602603
"* Several MATLAB toolboxes offer capabilities unavailable to the Python community\n",
604+
"* Superior documentation\n",
605+
"* Commercially robust and reliable scientific computing tools\n",
603606
"\n",
604607
"### Python > MATLAB\n",
605608
"\n",

02_Speeding_Python.ipynb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,30 +46,31 @@
4646
"\n",
4747
"### PyHPC Tutorial on GitHub\n",
4848
"\n",
49-
"These presentation materials are part of a continuously updated tutorial on Python for High Performance Computing. To get the presentation materials as they were delivered today, please use the SC2012 tag on github. Future versions of this presentation will be found at:\n",
49+
"These presentation materials are part of a continuously updated tutorial on Python for High Performance Computing. To get the presentation materials as they were delivered today, please use the SAHPC2012 tag on github. Future versions of this presentation will be found at:\n",
5050
"\n",
5151
"https://github.com/pyhpc/pyhpc-tutorial\n",
5252
"\n",
5353
"Please set all permanent bookmarks to this URL.\n",
5454
"\n",
55-
"### Direct download of this SC2012 presentation\n",
56-
"You can download a zip or tar ball from the [github SC2012 tag](https://github.com/pyHPC/pyhpc-tutorial/tags):\n",
55+
"### Direct download of this SAHPC 2012 presentation\n",
56+
"You can download a zip or tar ball from the [github sahpc2012 tag](https://github.com/pyHPC/pyhpc-tutorial/tags):\n",
5757
"\n",
5858
"```\n",
59-
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/zipball/SC2012\n",
60-
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/tarball/SC2012\n",
59+
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/zipball/sahpc2012\n",
60+
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/tarball/sahpc2012\n",
6161
"```\n",
6262
"\n",
6363
"### \n",
6464
"2) Checkout from git\n",
6565
"\n",
6666
"```\n",
6767
"git clone https://github.com/pyhpc/pyhpc-tutorial.git\n",
68+
"git checkout sahpc2012\n",
6869
"```\n",
6970
"\n",
7071
"### Viewing the read-only version of this presentation on nbviewer: \n",
7172
"\n",
72-
"* http://nbviewer.ipython.org/urls/raw.github.com/pyhpc/pyhpc-tutorial/master/02_Speeding_Python.ipynb"
73+
"* http://nbviewer.ipython.org/urls/raw.github.com/pyhpc/pyhpc-tutorial/sahpc2012/02_Speeding_Python.ipynb"
7374
]
7475
},
7576
{
@@ -93,7 +94,7 @@
9394
"\n",
9495
" $ ipython notebook --pylab=inline\n",
9596
"\n",
96-
"If you are installing the packages yourself, Continuum Analytics (disclaimer, Travis Oliphant is CEO of this company) provides both free community as well as professional versions of the Anaconda installer, which provides all the packages you will need for this portion of the tutorial. The installer is available from the [Anaconda download page at Continuum Analytics](https://store.continuum.io/cshop/anaconda).\n",
97+
"If you are installing the packages yourself, Continuum Analytics provides both free community as well as professional versions of the Anaconda installer, which provides all the packages you will need for this portion of the tutorial. The installer is available from the [Anaconda download page at Continuum Analytics](https://store.continuum.io/cshop/anaconda).\n",
9798
"\n",
9899
"You are also welcome to use Enthought's Python Distribution (free for Academic users), available from the [EPD download page at Enthought](http://www.enthought.com/products/epd.php).\n",
99100
"\n",

03_Scaling_Python.ipynb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,30 +54,31 @@
5454
"\n",
5555
"### PyHPC Tutorial on GitHub\n",
5656
"\n",
57-
"These presentation materials are part of a continuously updated tutorial on Python for High Performance Computing. To get the presentation materials as they were delivered today, please use the SC2012 tag on github. Future versions of this presentation will be found at:\n",
57+
"These presentation materials are part of a continuously updated tutorial on Python for High Performance Computing. To get the presentation materials as they were delivered today, please use the SAHPC2012 tag on github. Future versions of this presentation will be found at:\n",
5858
"\n",
5959
"https://github.com/pyhpc/pyhpc-tutorial\n",
6060
"\n",
6161
"Please set all permanent bookmarks to this URL.\n",
6262
"\n",
63-
"### Direct download of this SC2012 presentation\n",
64-
"You can download a zip or tar ball from the [github SC2012 tag](https://github.com/pyHPC/pyhpc-tutorial/tags):\n",
63+
"### Direct download of this SAHPC 2012 presentation\n",
64+
"You can download a zip or tar ball from the [github sahpc2012 tag](https://github.com/pyHPC/pyhpc-tutorial/tags):\n",
6565
"\n",
6666
"```\n",
67-
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/zipball/SC2012\n",
68-
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/tarball/SC2012\n",
67+
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/zipball/sahpc2012\n",
68+
"wget --no-check-certificate https://github.com/pyhpc/pyhpc-tutorial/tarball/sahpc2012\n",
6969
"```\n",
7070
"\n",
7171
"### \n",
7272
"2) Checkout from git\n",
7373
"\n",
7474
"```\n",
7575
"git clone https://github.com/pyhpc/pyhpc-tutorial.git\n",
76+
"git checkout sahpc2012\n",
7677
"```\n",
7778
"\n",
7879
"### Viewing the read-only version of this presentation on nbviewer: \n",
7980
"\n",
80-
"* http://nbviewer.ipython.org/urls/raw.github.com/pyhpc/pyhpc-tutorial/master/03_Scaling_Python.ipynb"
81+
"* http://nbviewer.ipython.org/urls/raw.github.com/pyhpc/pyhpc-tutorial/sahpc2012/03_Scaling_Python.ipynb"
8182
]
8283
},
8384
{
@@ -107,7 +108,7 @@
107108
" ipcluster start --engines=MPI --n 4\n",
108109
" ipython notebook --pylab=inline\n",
109110
"\n",
110-
"If you are installing the packages yourself, Continuum Analytics (disclaimer, Travis Oliphant is CEO of this company) provides both free community as well as professional versions of the Anaconda installer, which provides all the packages you will need for this portion of the tutorial. The installer is available from the [Anaconda download page at Continuum Analytics](https://store.continuum.io/cshop/anaconda).\n",
111+
"If you are installing the packages yourself, Continuum Analytics provides both free community as well as professional versions of the Anaconda installer, which provides all the packages you will need for this portion of the tutorial. The installer is available from the [Anaconda download page at Continuum Analytics](https://store.continuum.io/cshop/anaconda).\n",
111112
"\n",
112113
"You are also welcome to use Enthought's Python Distribution (free for Academic users), available from the [EPD download page at Enthought](http://www.enthought.com/products/epd.php).\n",
113114
"\n",

0 commit comments

Comments
 (0)