about summary refs log tree commit diff
path: root/pkgs/applications/science/math/caffe
AgeCommit message (Collapse)AuthorFilesLines
2024-04-13treewide: remove cudatoolkit.cc referencesSomeone Serge1-2/+2
2024-01-10tree-wide: cudaPackages should not break default evalConnor Baker1-1/+1
cudaPackages: guard expressions against null values
2023-12-07caffe: fix eval when CUDNN is not availableConnor Baker1-13/+14
2023-10-10caffe: opencv3 -> opencv4Ben Darwin1-2/+8
2023-10-10caffeWithCuda: mark brokenBen Darwin1-1/+1
> CMake Error at cuda_compile_1_generated_math_functions.cu.o.Release.cmake:280 (message): > Error generating file > /build/source/build/src/caffe/CMakeFiles/cuda_compile_1.dir/util/./cuda_compile_1_generated_math_functions.cu.o
2023-07-20treewide: consume config.cudaSupport as requiredSomeone Serge1-1/+1
Eliminate uses of `config.cudaSupport or false` and alike, since the option is now declared in config.nix with a default value fd .nix -t f -x sed 's/config\.cudaSupport or false, cudaPackages [?] [{][}]/config.cudaSupport, cudaPackages ? { }/' '{}' -i fd .nix -t f -x sed 's/config\.cudaSupport or false/config.cudaSupport/' '{}' -i fd .nix -t f -x sed 's/cudaSupport = pkgs.config.cudaSupport/inherit (pkgs.config) cudaSupport/' '{}' -i fd .nix -t f -x sed 's/cudaSupport = config.cudaSupport/inherit (config) cudaSupport/' '{}' -i
2023-05-24cudaPackages.cudnn: remove patch version from name to conform with ↵Connor Baker1-1/+1
cudaPackages standard
2023-05-14python310Packages.scikit-image: rename from scikitimageMartin Weinelt1-1/+1
to match the pname and create an alias for the former name.
2023-02-21caffe: use pre-CUDNN 8.xConnor Baker1-1/+7
2022-04-09cudaPackages: overhaul of how we package cuda packagesFrederik Rietdijk1-3/+7
There are many different versions of the `cudatoolkit` and related cuda packages, and it can be tricky to ensure they remain compatible. - `cudaPackages` is now a package set with `cudatoolkit`, `cudnn`, `cutensor`, `nccl`, as well as `cudatoolkit` split into smaller packages ("redist"); - expressions should now use `cudaPackages` as parameter instead of the individual cuda packages; - `makeScope` is now used, so it is possible to use `.overrideScope'` to set e.g. a different `cudnn` version; - `release-cuda.nix` is introduced to easily evaluate cuda packages using hydra.
2022-04-06python310Packages.caffe: mark as brokenSomeone Serge1-0/+1
2022-04-04remove jb55 as maintainer from some packagesWilliam Casarin1-1/+1
I no longer use these and don't have much incentive to maintain them :(
2021-09-22caffe: fix build with protobuf 3.18+Ryan Burns1-1/+5
2021-07-03treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutilRobert Schütz1-1/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-1/+1
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-03treewide: remove enableParallelBuilding = true if using cmakeBen Siraphob1-2/+0
2020-04-17treewide: use blas and lapackMatthew Bauer1-2/+2
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-07-25google-gflags: move to aliases.nixOrivej Desh1-2/+2
google-gflags were renamed to gflags in 2012: https://github.com/gflags/gflags/#25-january-2012 gflags.name will be updated in staging.
2019-07-20caffe: add python package requirementsavitex1-3/+11
2019-07-20caffe: fix python buildavitex2-2/+2
2019-06-16treewide: remove unused variables (#63177)volth1-1/+1
* treewide: remove unused variables * making ofborg happy
2019-02-19Merge pull request #56026 from ↵Michael Raskin1-3/+3
oxij/tree/move-defaults-to-package-files-half-cuda all-packages.nix: move defaults to package files continues^2
2019-02-17python.pkgs.caffe: fix build, closes #8749Frederik Rietdijk2-8/+86
2019-02-03caffe: move defaults to package fileJan Malakhovski1-3/+3
2018-08-16caffe: add darwin support (#44616)zimbatm2-9/+89
2018-02-25caffe: add nccl supportNikolay Amiantov1-1/+5
2018-02-25caffe: depend on opencv3Nikolay Amiantov1-7/+10
openblas is used since it's propagated from OpenCV and ATLAS compiled without architecture-specific optimizations is generally slower than OpenBLAS as I heard.
2017-10-19caffe: 1.0-rc5 -> 1.0Nikolay Amiantov1-6/+17
Fix build with cudatoolkit9.
2017-09-27caffe: Make 'bin' the first outputTuomas Tynkkynen1-3/+2
So ${caffe}/bin/foo always works in scripts.
2017-09-07caffe: add Python supportNikolay Amiantov1-30/+34
Move to CMake in the process.
2017-09-07caffe: 2015-07-02 -> 1.0-rc5Nikolay Amiantov1-10/+12
2015-07-08caffe: init at rev 77d66dfcWilliam Casarin1-0/+70
Initial version of the Caffe deep learning framework from Berkeley