blob: b6150c9f1a0fc59f8c3f30388fe2eff41b659bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{% set version = "0.8.dev" %}
package:
name: caffe2
version: {{ version }}
source:
path: ..
build:
number: 1
skip: True # [win]
script_env:
- CONDA_CMAKE_ARGS
requirements:
build:
- future
- glog
- numpy
- six
- eigen
- python
- protobuf ==3.4.0
- cmake
- leveldb
- lmdb
- snappy
- mkl-include
- mkl
run:
- future
- glog
- numpy
- six
- eigen
- python
- protobuf ==3.4.0
- leveldb
- lmdb
- snappy
- future
- mkl
about:
home: https://caffe2.ai/
license: BSD
summary: deep learning library
extra:
recipe-maintainers:
- ezyang
|