File: control

package info (click to toggle)
compyle 0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,064 kB
  • sloc: python: 11,504; makefile: 19
file content (49 lines) | stat: -rw-r--r-- 1,885 bytes parent folder | download
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
Source: compyle
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Antonio Valentino <antonio.valentino@tiscali.it>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: cython3,
               debhelper-compat (= 12),
               dh-python,
               python3-all-dev,
               python3-mako,
               python3-numpy,
               python3-pyopencl,
               python3-pytest,
               python3-pytools,
               python3-setuptools
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/science-team/compyle
Vcs-Git: https://salsa.debian.org/science-team/compyle.git
Homepage: https://github.com/pypr/compyle
Rules-Requires-Root: no

Package: python3-compyle
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends},
         cython3,
         python3-mako,
         python3-numpy,
         python3-pytools
Recommends: ${python3:Recommends}
Suggests: ${python3:Suggests},
          python3-pycuda,
          python3-pyopencl
Description: Execute a subset of Python on HPC platforms
 ComPyle allows users to execute a restricted subset of Python (almost
 similar to C) on a variety of HPC platforms. Currently it supports
 multi-core execution using Cython, and OpenCL and CUDA for GPU devices.
 .
 Users start with code implemented in a very restricted Python syntax,
 this code is then automatically transpiled, compiled and executed to run
 on either one CPU core, or multiple CPU cores (via OpenMP_) or on a GPU.
 CPy offers source-to-source transpilation, making it a very convenient
 tool for writing HPC libraries.
 .
 Some simple yet powerful parallel utilities are provided which can allow
 you to solve a remarkably large number of interesting HPC problems.
 .
 ComPyle also features JIT transpilation if you wish making it easy to use.