-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathremotesom.cabal
More file actions
73 lines (64 loc) · 1.49 KB
/
remotesom.cabal
File metadata and controls
73 lines (64 loc) · 1.49 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
cabal-version: 3.0
name: remotesom
version: 0.4.2.0
synopsis: Self-organizing maps with federated learning
license: Apache-2.0
license-file: LICENSE
author: Mirek Kratochvil
maintainer: exa.exa@gmail.com
copyright: Copyright (C) 2025 University of Luxembourg
category: Math
build-type: Simple
extra-doc-files: CHANGELOG.md
-- description:
-- extra-source-files:
common opts
ghc-options: -Wall -O2 -fexpose-all-unfoldings -fspecialize-aggressively
library
import: opts
hs-source-dirs: .
exposed-modules:
Numeric.RemoteSOM
Numeric.RemoteSOM.IO
Numeric.RemoteSOM.RunN
-- other-modules:
build-depends:
, accelerate
, accelerate-llvm-native
, accelerate-io
, aeson
, base
, mmap
, storablevector
hs-source-dirs: .
default-language: Haskell2010
executable remotesom
import: opts
ghc-options: -rtsopts -threaded
main-is: Main.hs
other-modules:
Network
Opts
autogen-modules: Paths_remotesom
other-modules: Paths_remotesom
build-depends:
, accelerate >= 1.3
, accelerate-llvm-native
, aeson
, async
, base
, bytestring
, containers
, crypton-x509
, crypton-x509-validation
, crypton-x509-store
, crypton-x509-system
, mmap
, network
, network-run
, optparse-applicative
, random >= 1.3
, remotesom
, tls
hs-source-dirs: app
default-language: Haskell2010