I hereby claim:
- I am renefritze on github.
- I am renefritze (https://keybase.io/renefritze) on keybase.
- I have a public key ASB1BvnE7PjuSnIYnOatAOWcfuNV4IiiGrW7PKsh5w59KQo
To claim this, I am signing this object:
pymor[full] |
import sys | |
from collections import defaultdict | |
from junitparser import JUnitXml | |
import os | |
from tabulate import tabulate | |
def read_files(filenames): | |
"""expect filenames of the form test_results_GIT-REV.xml |
git+https://github.com/pymor/pymor.git@fix_memory_cache | |
jupytext |
FROM nmiyake/go:go-darwin-linux-1.11-t134 as builder | |
# copying these here allows to cache the download | |
COPY godelw /go/src/github.com/palantir/bulldozer/ | |
COPY godel/config /go/src/github.com/palantir/bulldozer/godel/config/ | |
WORKDIR /go/src/github.com/palantir/bulldozer | |
RUN ./godelw download || true | |
COPY . /go/src/github.com/palantir/bulldozer |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
""" Recursively walk the current working directory looking for broken | |
symlinks. If any broken symlinks are found print out a report and exit | |
with status 1. If none are found print out OK and exit with status 0. | |
""" | |
import sys | |
import os | |
print('Checking for broken symlinks...', end='') |
FROM pymor/python:3.5 | |
MAINTAINER René Milk <[email protected]> | |
USER root | |
ENV SRCDIR /root/src | |
RUN mkdir ${SRCDIR} && cd ${SRCDIR} && \ | |
for i in fiat instant dijitso ufl ffc dolfin mshr ; do \ | |
git clone https://bitbucket.org/fenics-project/$i ; \ | |
done && \ |
from ubuntu:16.04 | |
RUN apt-get update && \ | |
apt-get install -y cmake g++ gcc git python3-dev ninja-build \ | |
python3-virtualenv && \ | |
mkdir /root/src && cd /root/src/ && \ | |
git clone https://github.com/dune-community/dune-gdt-super.git && \ | |
cd dune-gdt-super && git submodule update --init --recursive | |
CMD ["/root/src/dune-gdt-super/dune-common/bin/dunecontrol", "--opts=/root/src/dune-gdt-super/config.opts/stinson/gcc_debug", "all"] |
#!/usr/bin/env python3 | |
from scipy.sparse.linalg import spilu | |
from scipy.sparse import identity | |
matrix = identity(2) | |
options = {'spilu_drop_tol':1e-4, | |
'spilu_fill_factor':10, | |
'spilu_drop_rule':'basic,area', | |
'spilu_permc_spec':'COLAMD' |