Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
6e4dccbd
Commit
6e4dccbd
authored
Jun 19, 2018
by
Martin Reinecke
Browse files
Merge branch 'NIFTy_5' of gitlab.mpcdf.mpg.de:ift/NIFTy into NIFTy_5
parents
b68268b0
3cbb33ea
Pipeline
#31360
failed with stages
in 2 minutes and 57 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
6e4dccbd
...
...
@@ -58,3 +58,142 @@ pages:
-
public
only
:
-
NIFTy_5
before_script
:
-
export MPLBACKEND="agg"
run_critical_filtering
:
stage
:
test
script
:
-
ls
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/critical_filtering.py
-
python3 demos/critical_filtering.py
artifacts
:
paths
:
-
'
*.png'
run_nonlinear_critical_filter
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/nonlinear_critical_filter.py
-
python3 demos/nonlinear_critical_filter.py
artifacts
:
paths
:
-
'
*.png'
run_nonlinear_wiener_filter
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/nonlinear_wiener_filter.py
-
python3 demos/nonlinear_wiener_filter.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_poisson_demo
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/poisson_demo.py
-
python3 demos/poisson_demo.py
artifacts
:
paths
:
-
'
*.png'
run_probing
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/probing.py
-
python3 demos/probing.py
artifacts
:
paths
:
-
'
*.png'
run_sampling
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/sampling.py
-
python3 demos/sampling.py
artifacts
:
paths
:
-
'
*.png'
run_tomography
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/tomography.py
-
python3 demos/tomography.py
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_data_space_noiseless
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/wiener_filter_data_space_noiseless.py
-
python3 demos/wiener_filter_data_space_noiseless.py
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_easy.py
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/wiener_filter_easy.py
-
python3 demos/wiener_filter_easy.py
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_via_curvature.py
:
stage
:
test
script
:
-
pip install --user numericalunits
-
pip3 install --user numericalunits
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/wiener_filter_via_curvature.py
-
python3 demos/wiener_filter_via_curvature.py
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_via_hamiltonian.py
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
python demos/wiener_filter_via_hamiltonian.py
-
python3 demos/wiener_filter_via_hamiltonian.py
artifacts
:
paths
:
-
'
*.png'
run_ipynb
:
stage
:
test
script
:
-
python setup.py install --user -f
-
python3 setup.py install --user -f
-
jupyter nbconvert --execute demos/Wiener_Filter.ipynb
artifacts
:
paths
:
-
'
*.png'
Dockerfile
View file @
6e4dccbd
...
...
@@ -24,6 +24,11 @@ RUN apt-get update && apt-get install -y \
&& pip install coverage \
&& rm -rf /var/lib/apt/lists/*
# Needed for demos to be running
RUN
apt-get update
&&
apt-get
install
-y
python-matplotlib python3-matplotlib
\
&&
python3
-m
pip
install
--upgrade
pip
&&
python3
-m
pip
install
jupyter
&&
python
-m
pip
install
--upgrade
pip
&&
python
-m
pip
install
jupyter
\
&&
rm
-rf
/var/lib/apt/lists/
*
# Create user (openmpi does not like to be run as root)
RUN
useradd
-ms
/bin/bash testinguser
USER
testinguser
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment