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
Unpacking sources files:tsn5somjsq3sgedz4fykrebxvdzcp3jw | |
Unpacking sources tar.gz:y2rxb2ktezyban674mxy4zxtttosqvl4 | |
running [u'/bin/bash', '_hashdist/build.sh'] | |
environment: | |
{'ARTIFACT': u'/Users/aron/.hashdist/bld/git/hsoeebq4xek7', | |
'BASH': u'/bin/bash', | |
'BUILD': u'/Users/aron/.hashdist/tmp/git-hsoeebq4xek7', | |
u'CURL_DIR': u'/Users/aron/.hashdist/bld/curl/wanputtlgx4h', | |
u'CURL_ID': u'curl/wanputtlgx4hduzxdehrwgcvdvemv524', | |
u'EXPAT_DIR': u'/Users/aron/.hashdist/bld/expat/7h4uoi6hlawg', |
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
extends: | |
- name: hashstack | |
urls: ['https://github.com/hashdist/hashstack.git'] | |
key: 'git:9df492a2bf18bd1290a2c104583bd0ec42ee5613' | |
file: linux.yaml | |
parameters: | |
HOST_MPICC: /usr/bin/mpicc | |
HOST_MPICXX: /usr/bin/mpic++ | |
HOST_MPIF77: /usr/bin/mpif77 |
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
extends: | |
- name: hashstack | |
urls: ['https://github.com/hashdist/hashstack.git'] | |
key: 'git:5cbda58b1700734851e1a949a47f8c31eda94133' | |
file: linux.yaml | |
packages: | |
blas: | |
use: openblas |
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
# This profile file controls your <#> (HashDist) build environment. | |
# In the future, we'll provide better incorporation of | |
# automatic environment detection. For now, have a look | |
# at the YAML files in the top-level directory and choose | |
# the most *specific* file that matches your environment. | |
extends: | |
- name: hashstack | |
urls: ['https://github.com/hashdist/hashstack.git'] |
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
""" | |
An IPython extension for specifying requirements | |
""" | |
import os | |
from subprocess import check_call | |
from IPython.core.magic import magics_class, cell_magic, Magics | |
@magics_class | |
class ThisWorks(Magics): |
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
""" Group Tutorial | |
Tutorial code for assigning tasks to subcommunicators and relaying | |
results back. | |
In this tutorial, no intercommunicator is used. Instead, | |
intracommunicators are created with coordination done by rank 0. It | |
is assumed that the second process will be responsible for Task A, and | |
that all remaining processes coordinate on Task B. |