This file contains 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/bash | |
### steps #### | |
# verify the system has a cuda-capable gpu | |
# download and install the nvidia cuda toolkit and cudnn | |
# setup environmental variables | |
# verify the installation | |
### | |
### to verify your gpu is cuda enable check |
This file contains 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
#!/usr/bin/env python3 | |
# Copyright (c) 2018 NVIDIA Corporation. All rights reserved. | |
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. | |
# https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode | |
from __future__ import print_function | |
###################################################### | |
""" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
$ cat moth.qsub | |
#!/bin/bash -l | |
#$ -l gpu_c=7.0 | |
#$ -pe omp 8 | |
#$ -l gpus=0.125 | |
# Get an email when it starts, ends, or fails | |
#$ -m bea |
This file contains 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
set nocompatible | |
syntax on | |
set autoindent | |
set hlsearch | |
set ignorecase | |
set incsearch | |
set smartcase | |
set ruler | |
set title | |
set background=dark |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#renderdoc.LoadLogfile('D:\gta5_frames\GTAVLauncher_2017.02.20_11.53.06_frame9280.rdc') | |
config = {} | |
# where we find the Python libraries | |
#config['py_lib_dir'] = 'C:\\Program Files\\Anaconda3\\Lib\\' | |
# where we find the Python libraries | |
config['py_lib_dir'] = 'C:\\Program Files\\Anaconda2\\Lib\\' | |
#import os | |
#from os import listdir |
This file contains 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
#!/usr/bin/python | |
from __future__ import print_function | |
import argparse | |
import json | |
import logging | |
import os | |
import subprocess | |
import sys | |
import csv | |
import traceback |
NewerOlder