-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmeta.yaml
More file actions
45 lines (39 loc) · 964 Bytes
/
meta.yaml
File metadata and controls
45 lines (39 loc) · 964 Bytes
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
{% set version = "1.3.0" %}
{% set buildnumber = 0 %}
package:
name: mkl_random
version: {{ version }}
source:
path: ..
build:
number: {{buildnumber}}
ignore_run_exports:
- blas
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python
- setuptools >=77
- mkl-devel
- cython
- numpy
- pip
run:
- python
- numpy
- {{ pin_compatible('mkl', min_pin="x.x", max_pin="x") }}
test:
commands:
- pytest --pyargs mkl_random
requires:
- pytest
imports:
- mkl_random
- mkl_random.mklrand
about:
home: http://github.com/IntelPython/mkl_random
license: BSD-3-Clause
license_file: LICENSE.txt
summary: NumPy-based implementation of random number generation sampling using Intel (R) Math Kernel Library, mirroring numpy.random, but exposing all choices of sampling algorithms available in MKL.