2012年2月17日 星期五
2011年12月1日 星期四
Usage of nvidia-smi
## show GPU short messages
nvidia-smi -L
## Display GPU detail info
nvidia-smi -q
## Disable GPU ECC memory
nvidia-smi --ecc-config=0
Reboot required.
## Set MODE for compute applications
## 0/DEFAULT
## 1/EXCLUSIVE_THREAD
## 2/PROHIBITED
## 3/EXCLUSIVE_PROCESS
nvidia-smi --compute-mode=3
nvidia-smi -L
## Display GPU detail info
nvidia-smi -q
## Disable GPU ECC memory
nvidia-smi --ecc-config=0
Reboot required.
## Set MODE for compute applications
## 0/DEFAULT
## 1/EXCLUSIVE_THREAD
## 2/PROHIBITED
## 3/EXCLUSIVE_PROCESS
nvidia-smi --compute-mode=3
2011年9月26日 星期一
英文標點符號
英文標點符號
. | 句號 | period |
, | 逗號 | comma |
; | 分號 | semicolon |
: | 冒號 | colon |
? | 問號 | question mark |
! | 驚嘆號 | exclamation point |
“ ” | 雙引號 | double quotation mark |
‘ ’ | 單引號 | single quotation mark |
– | 連字號 | hyphen |
–– | 破折號 | dash |
( ) | 括號 | parenthesis |
[ ] | 方括號 | square bracket |
... | 刪節號 | ellipsis |
/ | 斜線 | slash |
` | 省略號 | apostrophe |
2011年9月22日 星期四
wxPython
## Install wxPython in CentOS 5.5
[references]
wxPython API
wxPyWiki
http://wiki.wxpython.org/FrontPage
http://wiki.wxpython.org/AnotherTutorial
LDS株式會社 blog
The wxPython tutorial
宅學習 python blog
Image Processing in Python
wxPython自製Control : 用Matplotlib畫圖表的FigurePanel
wxPython Programming Tutorial
http://wiki.pastwind.org/home/python-cheng-shi-yu-yan
http://garywlee.blogspot.com/2007/10/wxpython.html
[dag]yum install wxPython.x86_64 wxPython-devel.x86_64
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1
[references]
wxPython API
wxPyWiki
http://wiki.wxpython.org/FrontPage
http://wiki.wxpython.org/AnotherTutorial
LDS株式會社 blog
The wxPython tutorial
宅學習 python blog
Image Processing in Python
wxPython自製Control : 用Matplotlib畫圖表的FigurePanel
wxPython Programming Tutorial
http://wiki.pastwind.org/home/python-cheng-shi-yu-yan
http://garywlee.blogspot.com/2007/10/wxpython.html
2011年9月21日 星期三
Using Parallelism in Python
1. Cython (C-Extensions for Python)
http://cython.org/
2. Multi-threading (built-in)
import threading
3. Parallel Python
http://www.parallelpython.com/content/view/17/31/
4. python-multiprocessing
Python 2.5/2.4 back port of the multiprocessing package
http://code.google.com/p/python-multiprocessing/
[references]
Does python support multiprocessor/multicore programming?
Practical threaded programming with Python
Basic Threading in Python
Understanding Threading in Python
Simple Python: a job queue with threading
http://hungic.blogspot.com/2008/08/pythonthreading.html
http://www.cppblog.com/riverbird/archive/2007/12/26/39704.html
http://cython.org/
wget http://cython.org/release/Cython-0.15.tar.gz
tar zxf Cython-0.15.tar.gz
cd Cython-0.15
python setup.py install
2. Multi-threading (built-in)
import threading
3. Parallel Python
http://www.parallelpython.com/content/view/17/31/
4. python-multiprocessing
Python 2.5/2.4 back port of the multiprocessing package
http://code.google.com/p/python-multiprocessing/
[references]
Does python support multiprocessor/multicore programming?
Practical threaded programming with Python
Basic Threading in Python
Understanding Threading in Python
Simple Python: a job queue with threading
http://hungic.blogspot.com/2008/08/pythonthreading.html
http://www.cppblog.com/riverbird/archive/2007/12/26/39704.html
訂閱:
文章 (Atom)