Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
6bfb5f1
Jenkins test
ASvyatkovskiy Dec 25, 2017
2249774
Tab-space insonsistency
ASvyatkovskiy Dec 25, 2017
b31baec
Notebooks belong in examples/notebooks
ASvyatkovskiy Dec 25, 2017
14bb70f
Fix IndexError in Python3 -- floating point slice index
ASvyatkovskiy Dec 25, 2017
7ff5806
Trigger Jenkins build
ASvyatkovskiy Dec 25, 2017
1e25e7c
Fix TypeError in layer definitions in Python3
ASvyatkovskiy Dec 25, 2017
da22f3b
Merge branch 'jenkins_test' of https://github.com/PPPLDeepLearning/pl…
ASvyatkovskiy Dec 25, 2017
45a797d
Restrict Jenkins build to 2 epochs
ASvyatkovskiy Dec 25, 2017
4b88bf0
Trigger Jenkins build
ASvyatkovskiy Dec 26, 2017
ee38533
No longer in use
ASvyatkovskiy Dec 26, 2017
81838b6
PYTHONHASHSEED is not needed with hashlb md5
ASvyatkovskiy Dec 26, 2017
db55cbc
Switch to hashlib.md5 hashing
ASvyatkovskiy Dec 26, 2017
c15f05e
Full build integration chain for Python 2 and Python 3
ASvyatkovskiy Dec 26, 2017
fc71699
Merge branch 'jenkins_test' of https://github.com/PPPLDeepLearning/pl…
ASvyatkovskiy Dec 26, 2017
8bfac27
Trigger jenkins test
ASvyatkovskiy Dec 26, 2017
4702553
Refactor
ASvyatkovskiy Dec 26, 2017
ffc3591
Refactor
ASvyatkovskiy Dec 26, 2017
3da6475
Refactor
ASvyatkovskiy Dec 26, 2017
02b5921
Python3 only
ASvyatkovskiy Dec 26, 2017
0f63dd2
Python2 only
ASvyatkovskiy Dec 26, 2017
d9d30b7
Adjust folder structure
ASvyatkovskiy Dec 26, 2017
357b36d
Merge branch 'jenkins_test' of https://github.com/PPPLDeepLearning/pl…
ASvyatkovskiy Dec 26, 2017
9b973c9
Trigger jenkins test
ASvyatkovskiy Dec 26, 2017
a79e511
Roll back to the single script option
ASvyatkovskiy Dec 26, 2017
09d2bda
Reinstall for each Python
ASvyatkovskiy Dec 26, 2017
921de30
Merge branch 'jenkins_test' of https://github.com/PPPLDeepLearning/pl…
ASvyatkovskiy Dec 26, 2017
65cb115
Add Jenkins Slurm methods
ASvyatkovskiy Dec 27, 2017
ced42ed
Jenkins driver script
ASvyatkovskiy Dec 27, 2017
61fa879
Trigger jenkins test
ASvyatkovskiy Dec 27, 2017
6385393
Assigned based on half of num_nodes
ASvyatkovskiy Dec 27, 2017
acc9887
Set num_nodes as in Jenkins project area
ASvyatkovskiy Dec 27, 2017
76caa74
Easier parsing with sed
ASvyatkovskiy Dec 27, 2017
7d09aad
Python based driver scripot for Jenkins
ASvyatkovskiy Dec 27, 2017
eff3c9b
Fix error in UnivariateSpline affecting edens_profile
ASvyatkovskiy Dec 27, 2017
2aa2486
Version 1.0
ASvyatkovskiy Dec 27, 2017
d13ee33
return None,None,False in case of problem
ASvyatkovskiy Dec 27, 2017
6027021
Add dedicated jenkins shotlists
ASvyatkovskiy Dec 28, 2017
d194f50
Proper folder structure
ASvyatkovskiy Dec 28, 2017
574a77c
Proper folder structure
ASvyatkovskiy Dec 28, 2017
53626d3
Proper folder structure
ASvyatkovskiy Dec 28, 2017
4527475
Debug
ASvyatkovskiy Dec 28, 2017
2b85a83
Debug
ASvyatkovskiy Dec 28, 2017
5fe9636
Don't trus latest anaconda for now, roll back to 4.4.0
ASvyatkovskiy Dec 29, 2017
1f92ec0
Trigger jenkins build
ASvyatkovskiy Dec 29, 2017
d3beb09
Trigger jenkins test
ASvyatkovskiy Dec 29, 2017
90ba457
Obsolete
ASvyatkovskiy Dec 29, 2017
ea0b6b2
Validate jenkins
ASvyatkovskiy Dec 29, 2017
a2cd354
Validate jenkins
ASvyatkovskiy Dec 29, 2017
47df24a
Create new anaconda env every test
ASvyatkovskiy Dec 29, 2017
d219010
Merge branch 'jenkins_test' of https://github.com/PPPLDeepLearning/pl…
ASvyatkovskiy Dec 29, 2017
7768b68
Can't create named conda envs with a specific desitnation
ASvyatkovskiy Dec 29, 2017
0edcd72
Install path is the conda env name
ASvyatkovskiy Dec 29, 2017
309e62c
Correct path
ASvyatkovskiy Dec 29, 2017
ea39f24
Adjust anaconda env
ASvyatkovskiy Dec 29, 2017
4501429
Trigger jenkins test
ASvyatkovskiy Dec 29, 2017
9e36e13
Exclude bad nodes, trigger jenkins build
ASvyatkovskiy Dec 29, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Validate jenkins
  • Loading branch information
ASvyatkovskiy committed Dec 29, 2017
commit ea0b6b295353d005e04e67b3834434fb047c7927
21 changes: 21 additions & 0 deletions jenkins-ci/validate_jenkins.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python

import mpi4py as mmm
print(mmm.__version__)

import keras as kk
print(kk.__version__)

import tensorflow as tf
print(tf.__version__)

from mpi4py import MPI
import sys

size = MPI.COMM_WORLD.Get_size()
rank = MPI.COMM_WORLD.Get_rank()
name = MPI.Get_processor_name()

sys.stdout.write(
"Hello, World! I am process %d of %d on %s.\n"
% (rank, size, name))