8000 numpy/site.cfg.example at master · ascii1011/numpy · GitHub
[go: up one dir, main page]

Skip to content
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":"branding","path":"branding","contentType":"directory"},{"name":"doc","path":"doc","contentType":"directory"},{"name":"numpy","path":"numpy","contentType":"directory"},{"name":"tools","path":"tools","contentType":"directory"},{"name":".gitattributes","path":".gitattributes","contentType":"file"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".gitmodules","path":".gitmodules","contentType":"file"},{"name":".mailmap","path":".mailmap","contentType":"file"},{"name":".travis.yml","path":".travis.yml","contentType":"file"},{"name":"BENTO_BUILD.txt","path":"BENTO_BUILD.txt","contentType":"file"},{"name":"COMPATIBILITY","path":"COMPATIBILITY","contentType":"file"},{"name":"DEV_README.txt","path":"DEV_README.txt","contentType":"file"},{"name":"INSTALL.txt","path":"INSTALL.txt","contentType":"file"},{"name":"LICENSE.txt","path":"LICENSE.txt","contentType":"file"},{"name":"MANIFEST.in","path":"MANIFEST.in","contentType":"file"},{"name":"README.txt","path":"README.txt","contentType":"file"},{"name":"TEST_COMMIT","path":"TEST_COMMIT","contentType":"file"},{"name":"THANKS.txt","path":"THANKS.txt","contentType":"file"},{"name":"bento.info","path":"bento.info","contentType":"file"},{"name":"bscript","path":"bscript","contentType":"file"},{"name":"pavement.py","path":"pavement.py","contentType":"file"},{"name":"release.sh","path":"release.sh","contentType":"file"},{"name":"runtests.py","path":"runtests.py","contentType":"file"},{"name":"setup.py","path":"setup.py","contentType":"file"},{"name":"setupegg.py","path":"setupegg.py","contentType":"file"},{"name":"site.cfg.example","path":"site.cfg.example","contentType":"file"},{"name":"tox.ini","path":"tox.ini","contentType":"file"}],"totalCount":27}},"fileTreeProcessingTime":9.921264,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":13131426,"defaultBranch":"master","name":"numpy","ownerLogin":"ascii1011","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2013-09-26T18:58:51.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/10108?v=4","public":true,"private":false,"isOrgOwned":false},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"master","listCacheKey":"v0:1615100960.182624","canEdit":false,"refType":"branch","currentOid":"5da4888cdf2e1c6c5ee1736f037ee3f18cdc2da3"},"path":"site.cfg.example","currentUser":null,"blob":{"rawLines":["# This file provides configuration information about non-Python dependencies for","# numpy.distutils-using packages. Create a file like this called \"site.cfg\" next","# to your package's setup.py file and fill in the appropriate sections. Not all","# packages will use all sections so you should leave out sections that your","# package does not use.","","# To assist automatic installation like easy_install, the user's home directory","# will also be checked for the file ~/.numpy-site.cfg .","","# The format of the file is that of the standard library's ConfigParser module.","#","# http://www.python.org/doc/current/lib/module-ConfigParser.html","#","# Each section defines settings that apply to one particular dependency. Some of","# the settings are general and apply to nearly any section and are defined here.","# Settings specific to a particular section will be defined near their section.","#","# libraries","# Comma-separated list of library names to add to compile the extension","# with. Note that these should be just the names, not the filenames. For","# example, the file \"libfoo.so\" would become simply \"foo\".","# libraries = lapack,f77blas,cblas,atlas","#","# library_dirs","# List of directories to add to the library search path when compiling","# extensions with this dependency. Use the character given by os.pathsep","# to separate the items in the list. Note that this character is known to","# vary on some unix-like systems; if a colon does not work, try a comma.","# This also applies to include_dirs and src_dirs (see below).","# On UN*X-type systems (OS X, most BSD and Linux systems):","# library_dirs = /usr/lib:/usr/local/lib","# On Windows:","# library_dirs = c:\\mingw\\lib,c:\\atlas\\lib","# On some BSD and Linux systems:","# library_dirs = /usr/lib,/usr/local/lib","#","# include_dirs","# List of directories to add to the header file earch path.","# include_dirs = /usr/include:/usr/local/include","#","# src_dirs ","# List of directories that contain extracted source code for the","# dependency. For some dependencies, numpy.distutils will be able to build","# them from source if binaries cannot be found. The FORTRAN BLAS and","# LAPACK libraries are one example. However, most dependencies are more","# complicated and require actual installation that you need to do","# yourself.","# src_dirs = /home/rkern/src/BLAS_SRC:/home/rkern/src/LAPACK_SRC","#","# search_static_first","# Boolean (one of (0, false, no, off) for False or (1, true, yes, on) for","# True) to tell numpy.distutils to prefer static libraries (.a) over","# shared libraries (.so). It is turned off by default.","# search_static_first = false","","# Defaults","# ========","# The settings given here will apply to all other sections if not overridden.","# This is a good place to add general library and include directories like","# /usr/local/{lib,include}","#","#[DEFAULT]","#library_dirs = /usr/local/lib","#include_dirs = /usr/local/include","","# Atlas","# -----","# Atlas is an open source optimized implementation of the BLAS and Lapack","# routines. Numpy will try to build against Atlas by default when available in","# the system library dirs. To build numpy against a custom installation of","# Atlas you can add an explicit section such as the following. Here we assume","# that Atlas was configured with ``prefix=/opt/atlas``.","#","# [atlas]","# library_dirs = /opt/atlas/lib","# include_dirs = /opt/atlas/include","","# OpenBLAS","# --------","# OpenBLAS is another open source optimized implementation of BLAS and Lapack","# and can be seen as an alternative to Atlas. To build numpy against OpenBLAS","# instead of Atlas, use this section instead of the above, adjusting as needed","# for your configuration (in the following example we installed OpenBLAS with","# ``make install PREFIX=/opt/OpenBLAS``.","#","# [openblas]","# libraries = openblas","# library_dirs = /opt/OpenBLAS/lib","# include_dirs = /opt/OpenBLAS/include","","# MKL","#----","# MKL is Intel's very optimized yet proprietary implementation of BLAS and","# Lapack.","# For recent (9.0.21, for example) mkl, you need to change the names of the","# lapack library. Assuming you installed the mkl in /opt, for a 32 bits cpu:","# [mkl]","# library_dirs = /opt/intel/mkl/9.1.023/lib/32/","# lapack_libs = mkl_lapack","#","# For 10.*, on 32 bits machines:","# [mkl]","# library_dirs = /opt/intel/mkl/10.0.1.014/lib/32/","# lapack_libs = mkl_lapack","# mkl_libs = mkl, guide","","# UMFPACK","# -------","# The UMFPACK library is used in scikits.umfpack to factor large sparse matrices. ","# It, in turn, depends on the AMD library for reordering the matrices for","# better performance. Note that the AMD library has nothing to do with AMD","# (Advanced Micro Devices), the CPU company.","#","# UMFPACK is not needed for numpy or scipy.","#","# http://www.cise.ufl.edu/research/sparse/umfpack/","# http://www.cise.ufl.edu/research/sparse/amd/","# http://scikits.appspot.com/umfpack","#","#[amd]","#amd_libs = amd","#","#[umfpack]","#umfpack_libs = umfpack","","# FFT libraries","# -------------","# There are two FFT libraries that we can configure here: FFTW (2 and 3) and djbfft.","# Note that these libraries are not needed for numpy or scipy.","#","# http://fftw.org/","# http://cr.yp.to/djbfft.html","#","# Given only this section, numpy.distutils will try to figure out which version","# of FFTW you are using.","#[fftw]","#libraries = fftw3","#","# For djbfft, numpy.distutils will look for either djbfft.a or libdjbfft.a . ","#[djbfft]","#include_dirs = /usr/local/djbfft/include","#library_dirs = /usr/local/djbfft/lib"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/ascii1011/numpy/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"site.cfg.example","displayUrl":"https://github.com/ascii1011/numpy/blob/master/site.cfg.example?raw=true","headerInfo":{"blobSize":"5.42 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"4cf4a33","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fascii1011%2Fnumpy%2Fblob%2Fmaster%2Fsite.cfg.example","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"142","truncatedSloc":"134"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":null,"languageID":null,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/ascii1011/numpy/blob/master/site.cfg.example","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/ascii1011/numpy/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/ascii1011/numpy/raw/refs/heads/master/site.cfg.example","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":true,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/ascii1011/numpy/branches":{"post":"y0twHL-Y3Ua3e1uHjyeqRw4eu-15obmJqIEg1t84HuSyEQp-Z2gbJIwfwB7YJVRHN1UUBrFjfHiQf4uH7PNLKA"},"/repos/preferences":{"post":"5Vo2bcrPyAQBMedVJKTQfCyKVj-rpaEz0a_FKNk_88tMZSf0LGs534Q3em3rXB4xw8pa3N9H9PAtUj1tz7Ek_w"}}},"title":"numpy/site.cfg.example at master · ascii1011/numpy","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-263cab1760dd.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1b17b3e7786a.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true}}}
0