-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updates package setup. * Modifies code to use dask. * Removes client recovery option in client.py, as it is not supported by dask. * Adds file for server initialization. * Update README.md
- Loading branch information
Showing
9 changed files
with
45 additions
and
147 deletions.
There are no files selected for viewing
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 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 file was deleted.
Oops, something went wrong.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tev02 | ||
tev03 | ||
tev04 | ||
tev05 | ||
tev06 | ||
tev07 | ||
tev08 | ||
tev10 |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import sys | ||
import psutil | ||
import dispy | ||
import dask | ||
import dask.distributed | ||
import paramiko | ||
import bokeh | ||
import subprocess32 | ||
|
||
print('python version: {}.{}.{}'.format(sys.version_info[0], sys.version_info[1], sys.version_info[2])) | ||
print ('psutil version: {}'.format(psutil.__version__)) | ||
print ('dispy version: {}'.format(dispy.__version__)) | ||
print('dask version: {}'.format(dask.__version__)) | ||
print('bokeh version: {}'.format(bokeh.__version__)) | ||
print('paramiko version: {}'.format(paramiko.__version__)) |
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 file was deleted.
Oops, something went wrong.