Skip to content

Commit 3c195de

Browse files
committed
Merge tag 'v1.3.0.0'
v1.3.0.0
2 parents 2f8e0e9 + f84d34c commit 3c195de

File tree

27 files changed

+98
-130
lines changed

27 files changed

+98
-130
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) [2007..2012] The Accelerate Team. All rights reserved.
1+
Copyright (c) [2007..2020] The Accelerate Team. All rights reserved.
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

accelerate-fft.cabal

Lines changed: 31 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
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:
99
Rank-polymorphic discrete Fourier transform (DFT), computed with a fast
1010
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).
1313
.
1414
Refer to the main /Accelerate/ package for more information:
1515
<http://hackage.haskell.org/package/accelerate>
1616
.
1717

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
2724

28-
Category: Compilers/Interpreters, Concurrency, Data, Parallelism
29-
Stability: Experimental
25+
category: Accelerate, Math
26+
stability: Experimental
3027

3128
extra-source-files:
3229
README.md
@@ -62,7 +59,12 @@ library
6259
Data.Array.Accelerate.Math.FFT.Mode
6360

6461
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
6668

6769
if flag(llvm-cpu)
6870
cpp-options: -DACCELERATE_LLVM_NATIVE_BACKEND
@@ -104,6 +106,7 @@ library
104106

105107
test-suite test-llvm-native
106108
type: exitcode-stdio-1.0
109+
default-language: Haskell2010
107110
hs-source-dirs: test
108111
main-is: TestNative.hs
109112
ghc-options: -main-is TestNative
@@ -133,6 +136,7 @@ test-suite test-llvm-native
133136

134137
test-suite test-llvm-ptx
135138
type: exitcode-stdio-1.0
139+
default-language: Haskell2010
136140
hs-source-dirs: test
137141
main-is: TestPTX.hs
138142
ghc-options: -main-is TestPTX
@@ -161,12 +165,12 @@ test-suite test-llvm-ptx
161165

162166

163167
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
166170

167171
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
171175

172176
-- vim: nospell

icebox/CUDA.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
-- Copyright : [2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
1010
-- License : BSD3
1111
--
12-
-- Maintainer : Trevor L. McDonell <[email protected]>
12+
-- Maintainer : Trevor L. McDonell <[email protected]>
1313
-- Stability : experimental
1414
-- Portability : non-portable (GHC extensions)
1515
--

icebox/Native/Twine.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
-- Copyright : [2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
1010
-- License : BSD3
1111
--
12-
-- Maintainer : Trevor L. McDonell <[email protected]>
12+
-- Maintainer : Trevor L. McDonell <[email protected]>
1313
-- Stability : experimental
1414
-- Portability : non-portable (GHC extensions)
1515
--

icebox/PTX/Twine.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
-- Copyright : [2017] Trevor L. McDonell
1010
-- License : BSD3
1111
--
12-
-- Maintainer : Trevor L. McDonell <[email protected]>
12+
-- Maintainer : Trevor L. McDonell <[email protected]>
1313
-- Stability : experimental
1414
-- Portability : non-portable (GHC extensions)
1515
--

icebox/Twine.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-- Copyright : [2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
77
-- License : BSD3
88
--
9-
-- Maintainer : Trevor L. McDonell <[email protected]>
9+
-- Maintainer : Trevor L. McDonell <[email protected]>
1010
-- Stability : experimental
1111
-- Portability : non-portable (GHC extensions)
1212
--

src/Data/Array/Accelerate/Math/DFT.hs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
{-# LANGUAGE TypeOperators #-}
55
-- |
66
-- Module : Data.Array.Accelerate.Math.DFT
7-
-- Copyright : [2012..2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
8-
-- [2013..2017] Robert Clifton-Everest
7+
-- Copyright : [2012..2020] The Accelerate Team
98
-- License : BSD3
109
--
11-
-- Maintainer : Trevor L. McDonell <[email protected]>
10+
-- Maintainer : Trevor L. McDonell <[email protected]>
1211
-- Stability : experimental
1312
-- Portability : non-portable (GHC extensions)
1413
--

src/Data/Array/Accelerate/Math/DFT/Centre.hs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
{-# LANGUAGE TypeOperators #-}
44
-- |
55
-- Module : Data.Array.Accelerate.Math.DFT.Centre
6-
-- Copyright : [2012..2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
7-
-- [2013..2017] Robert Clifton-Everest
6+
-- Copyright : [2012..2020] The Accelerate Team
87
-- License : BSD3
98
--
10-
-- Maintainer : Trevor L. McDonell <[email protected]>
9+
-- Maintainer : Trevor L. McDonell <[email protected]>
1110
-- Stability : experimental
1211
-- Portability : non-portable (GHC extensions)
1312
--

src/Data/Array/Accelerate/Math/DFT/Roots.hs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
{-# LANGUAGE TypeOperators #-}
44
-- |
55
-- Module : Data.Array.Accelerate.Math.DFT.Roots
6-
-- Copyright : [2012..2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
7-
-- [2013..2017] Robert Clifton-Everest
6+
-- Copyright : [2012..2020] The Accelerate Team
87
-- License : BSD3
98
--
10-
-- Maintainer : Trevor L. McDonell <[email protected]>
9+
-- Maintainer : Trevor L. McDonell <[email protected]>
1110
-- Stability : experimental
1211
-- Portability : non-portable (GHC extensions)
1312
--

src/Data/Array/Accelerate/Math/FFT.hs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@
1010
{-# LANGUAGE ViewPatterns #-}
1111
-- |
1212
-- Module : Data.Array.Accelerate.Math.FFT
13-
-- Copyright : [2012..2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell
14-
-- [2013..2017] Robert Clifton-Everest
13+
-- Copyright : [2012..2020] The Accelerate Team
1514
-- License : BSD3
1615
--
17-
-- Maintainer : Trevor L. McDonell <[email protected]>
16+
-- Maintainer : Trevor L. McDonell <[email protected]>
1817
-- Stability : experimental
1918
-- Portability : non-portable (GHC extensions)
2019
--

0 commit comments

Comments
 (0)