summaryrefslogtreecommitdiff
path: root/python/conda/libastra
AgeCommit message (Collapse)Author
2021-10-27Fix conda package meta.yaml for WindowsWillem Jan Palenstijn
2021-10-27Version 2.0.0Willem Jan Palenstijn
2021-10-26Reorganize docker environmentsWillem Jan Palenstijn
Now using debian8, debian9, debian11 for cuda 8 - 11.4
2021-10-11Add brief conda build instructions for win64Willem Jan Palenstijn
2021-07-01Update conda packages to python 3.9, cuda 11.1Willem Jan Palenstijn
Since cudatoolkit=11.1 isn't in the main anaconda channel (yet?), the nvidia conda channel is used.
2021-07-01Restrict conda host env libstdc++-ng to prevent build errors on docker envWillem Jan Palenstijn
2020-11-13Split conda/cuda build environment in twoWillem Jan Palenstijn
2020-10-15Add conda packages for cudatoolkit-11.0Willem Jan Palenstijn
2020-02-07Use numpy backward binary compatibility for conda packagesWillem Jan Palenstijn
We now only build a single package built with numpy 1.11.x for numpy>=1.11,<2 . There is no guarantee that every future numpy version covered by this will be compatible with numpy 1.11, but numpy checks this internally at run-time, and should report this (noisily) when this occurs.
2020-01-14Update python/numpy/cuda versions for condaWillem Jan Palenstijn
2019-09-27Increment version to 1.9.9devWillem Jan Palenstijn
2019-09-20Use conda compiler toolchain for conda buildsAllard Hendriksen
For both libastra and astra-toolbox: 1) We do not use script_env to set CC/CXX anymore, since the compilers are installed by conda. 2) The build string is made useful by including either the python+numpy version or the cudatoolkit version that the package was built with. 3) Some clean-up of build.sh in buildenv/ For libastra: 1) The libastra.so is built with the conda C/C++ compiler toolchain. This has two benefits: 1) The rpath of libastra.so is set to $ORIGIN, which makes linking easier for dependent packages. 2) libastra.so is linkable against ancient versions of glibc. With old versions of memcpy. 2) The C/C++ compiler version is fixed to 5.4.0 3) In libastra/build.sh, we rename $CONDA_PREFIX to $PREFIX. Apparently, this is how it is supposed to be done. For me, $CONDA_PREFIX was suddenly undefined. Why this was not a problem before, is unclear to me. 4) The cudatoolkit runtime dependency is pinned with pin_compatible 5) The libastra conda package now provides headers and .pc file. This is useful for building C++ packages that depend on astra. 6) Remove some old code related to cudatoolkit<8.0. For astra-toolbox: 1) astra-toolbox uses the conda-provided compilers 2) The compilers are fixed to version 7.3 3) Add boost to host requirements of astra-toolbox Notes on testing: - The libastra build has been tested with all versions of cudatoolkit - The astra-toolbox build has been tested with all provided versions of python after building a single cudatoolkit version of libastra. How to test this branch: - It should work by just editing `python/conda/linux_release/buildenv/build.sh`. Set BRANCH=CI-use-conda-c-compiler-toolchain URL=https://github.com/ahendriksen/astra-toolbox and run release.sh from the `python/conda/linux_release` directory.
2019-07-08Build updates for Debian 8 + CUDA10.1Willem Jan Palenstijn
Debian 7 is EOL, and CUDA 10.1 doesn't support its version of glibc. Hardcoded conda=4.6.14 for now, since 4.7.5 seems to be downloading corrupted packages when running in docker/linux-64.
2019-07-08Build updates for Win10 + VS2017 + CUDA9 + Matlab R2018bWillem Jan Palenstijn
2019-04-12Update conda builds for cuda 10 and numpy 1.16Willem Jan Palenstijn
2018-08-31Build for new cuda/python/numpy versionsWillem Jan Palenstijn
2017-11-22Update version to 1.9.0devWillem Jan Palenstijn
2017-11-06Update version to 1.8.3Willem Jan Palenstijn
2017-11-06Add libastra/linux-64 conda package variants for cudatoolkitWillem Jan Palenstijn
Also upgrade the Docker-based linux release scripts to match.
2017-03-29Fix conda buildWillem Jan Palenstijn
2017-03-20Add autotools and boost to macOS conda libastra dependenciesWillem Jan Palenstijn
2017-03-20Silence errors from nvcc test runWillem Jan Palenstijn
2017-03-20Change lib/lib64 logicWillem Jan Palenstijn
macOS CUDA uses lib even on 64 bit
2017-03-20Fix conda boost include flagsWillem Jan Palenstijn
2017-03-20Use true instead of /bin/trueWillem Jan Palenstijn
It's in /usr/bin/ on macOS.
2016-12-09Use external boost for conda/win-64Willem Jan Palenstijn
This enables py27 conda packages for win-64.
2016-12-05Update version to 1.8Willem Jan Palenstijn
2016-12-01Add astra.__version__ (PEP396)Willem Jan Palenstijn
2016-12-01Add conda build scripts for win-64/py35Willem Jan Palenstijn
2016-11-25Separate C++ and python builds & make conda work nicelyHolger Kohr
- make builder (= advanced user or us ourselves) choose compilers and CUDA - add a check for the C++11 flag for nvcc to work around the infamous boost bug if necessary - use conda boost to build the C++ library - simplify python bindings conda recipe to only build the bindings; the C++ library is now a build and runtime dependency - add runtime dependencies to python bindings recipe - some small adjustments to builder.py
2016-03-03Remove with-python from libastra conda buildDaniel M. Pelt
2016-03-03Split conda package into c++ lib and python partsDaniel M. Pelt