qshinoの日記

Powershell関係と徒然なこと

2019-03-27から1日間の記事一覧

python getopt

import getopt, sys def main(): try: opts, args = getopt.getopt(sys.argv[1:], "ho:v", ["help", "output="]) except getopt.GetoptError as err: # print help information and exit: print(err) # will print something like "option -a not recognized…

cuda

cuda10 on k40x2 cuda10をk40x2 のマシンにインストール。 os centos7 簡単には行かなかったが、サンプルをコンパイル中。記憶の限りでの対応内容。 はじまり GPUを搭載してlspciでデバイス発見。嬉々としてcuda/runfileをDL&インスコ。まだまだ長い道のりの…