|
1 | | -Name: accelerate-fft |
2 | | -Version: 1.3.0.0 |
3 | | -Cabal-version: >= 1.8 |
4 | | -Tested-with: GHC >= 7.10 |
5 | | -Build-type: Simple |
6 | | - |
7 | | -Synopsis: FFT using the Accelerate library |
8 | | -Description: |
| 1 | +name: accelerate-fft |
| 2 | +version: 1.3.0.0 |
| 3 | +cabal-version: >= 1.10 |
| 4 | +tested-with: GHC >= 7.10 |
| 5 | +build-type: Simple |
| 6 | + |
| 7 | +synopsis: FFT using the Accelerate library |
| 8 | +description: |
9 | 9 | Rank-polymorphic discrete Fourier transform (DFT), computed with a fast |
10 | 10 | Fourier transform (FFT) algorithm using the Accelerate library. Note that |
11 | | - optimised implementations are available via foreign libraries, but must be |
12 | | - explicitly enabled. |
| 11 | + optimised implementations are available via foreign libraries (enabled by |
| 12 | + default). |
13 | 13 | . |
14 | 14 | Refer to the main /Accelerate/ package for more information: |
15 | 15 | <http://hackage.haskell.org/package/accelerate> |
16 | 16 | . |
17 | 17 |
|
18 | | -License: BSD3 |
19 | | -License-file: LICENSE |
20 | | -Author: Manuel M T Chakravarty, |
21 | | - Gabriele Keller, |
22 | | - Trevor L. McDonell, |
23 | | - Robert Clifton-Everest |
24 | | -Maintainer: Trevor L. McDonell < [email protected]> |
25 | | -Homepage: https://github.com/AccelerateHS/accelerate-fft |
26 | | -Bug-reports: https://github.com/AccelerateHS/accelerate/issues |
| 18 | +license: BSD3 |
| 19 | +license-file: LICENSE |
| 20 | +author: The Accelerate Team |
| 21 | +maintainer: Trevor L. McDonell < [email protected]> |
| 22 | +homepage: https://github.com/AccelerateHS/accelerate-fft |
| 23 | +bug-reports: https://github.com/AccelerateHS/accelerate/issues |
27 | 24 |
|
28 | | -Category: Compilers/Interpreters, Concurrency, Data, Parallelism |
29 | | -Stability: Experimental |
| 25 | +category: Accelerate, Math |
| 26 | +stability: Experimental |
30 | 27 |
|
31 | 28 | extra-source-files: |
32 | 29 | README.md |
@@ -62,7 +59,12 @@ library |
62 | 59 | Data.Array.Accelerate.Math.FFT.Mode |
63 | 60 |
|
64 | 61 | hs-source-dirs: src |
65 | | - ghc-options: -O2 -Wall -funbox-strict-fields |
| 62 | + default-language: Haskell2010 |
| 63 | + |
| 64 | + ghc-options: |
| 65 | + -O2 |
| 66 | + -Wall |
| 67 | + -funbox-strict-fields |
66 | 68 |
|
67 | 69 | if flag(llvm-cpu) |
68 | 70 | cpp-options: -DACCELERATE_LLVM_NATIVE_BACKEND |
@@ -104,6 +106,7 @@ library |
104 | 106 |
|
105 | 107 | test-suite test-llvm-native |
106 | 108 | type: exitcode-stdio-1.0 |
| 109 | + default-language: Haskell2010 |
107 | 110 | hs-source-dirs: test |
108 | 111 | main-is: TestNative.hs |
109 | 112 | ghc-options: -main-is TestNative |
@@ -133,6 +136,7 @@ test-suite test-llvm-native |
133 | 136 |
|
134 | 137 | test-suite test-llvm-ptx |
135 | 138 | type: exitcode-stdio-1.0 |
| 139 | + default-language: Haskell2010 |
136 | 140 | hs-source-dirs: test |
137 | 141 | main-is: TestPTX.hs |
138 | 142 | ghc-options: -main-is TestPTX |
@@ -161,12 +165,12 @@ test-suite test-llvm-ptx |
161 | 165 |
|
162 | 166 |
|
163 | 167 | source-repository head |
164 | | - Type: git |
165 | | - Location: git://github.com/AccelerateHS/accelerate-fft.git |
| 168 | + type: git |
| 169 | + location: git://github.com/AccelerateHS/accelerate-fft.git |
166 | 170 |
|
167 | 171 | source-repository this |
168 | | - Type: git |
169 | | - Tag: v1.3.0.0 |
170 | | - Location: git://github.com/AccelerateHS/accelerate-fft.git |
| 172 | + type: git |
| 173 | + tag: v1.3.0.0 |
| 174 | + location: git://github.com/AccelerateHS/accelerate-fft.git |
171 | 175 |
|
172 | 176 | -- vim: nospell |
0 commit comments