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
| #!/usr/bin/env python3 | |
| """Run multiple jobs, potentially in parallel to leverage multiple GPUs on host.""" | |
| import hashlib | |
| from os import environ | |
| from os.path import expanduser, exists | |
| import subprocess | |
| import shlex | |
| import time |
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
| # Compiling TensorFlow 1.12 with CUDA 10 on conda environment on Arch Linux. | |
| # | |
| # Desired versions: | |
| # - TensorFlow 1.12 | |
| # - Python 3.6 | |
| # | |
| # Tested on Arch Linux with: | |
| # - cuda 10.0.130-2 | |
| # - cudnn 7.3.0-1 | |
| # - nccl 2.3.4.4-2 |
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
| #!/usr/bin/env python3 | |
| from collections import Counter | |
| from os.path import join | |
| import re | |
| import os | |
| import pykakasi | |
| # --- Routines |
OlderNewer