mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-28 14:26:23 +02:00
33 lines
No EOL
899 B
INI
33 lines
No EOL
899 B
INI
# This is the default configuration file for GPy
|
|
|
|
# Do note edit this file.
|
|
|
|
# For machine specific changes (i.e. those specific to a given installation) edit GPy/installation.cfg
|
|
|
|
# For user specific changes edit $HOME/.gpy_user.cfg
|
|
[parallel]
|
|
# Enable openmp support. This speeds up some computations, depending on the number
|
|
# of cores available. Setting up a compiler with openmp support can be difficult on
|
|
# some platforms, hence by default it is off.
|
|
openmp=False
|
|
|
|
[datasets]
|
|
# location for the local data cache
|
|
dir=$HOME/tmp/GPy-datasets/
|
|
|
|
[anaconda]
|
|
# if you have an anaconda python installation please specify it here.
|
|
installed = False
|
|
location = None
|
|
# set this to true if you have the MKL optimizations installed:
|
|
MKL = False
|
|
|
|
[weave]
|
|
#if true, try to use weave, and fall back to numpy. if false, just use numpy.
|
|
working = True
|
|
|
|
[cython]
|
|
working = True
|
|
|
|
[plotting]
|
|
library = matplotlib |