-
Notifications
You must be signed in to change notification settings - Fork 0
/
fasttext.cabal
46 lines (41 loc) · 1.37 KB
/
fasttext.cabal
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
cabal-version: 2.4
name: fasttext
version: 0.1.0.0
license: BSD-2-Clause
license-file: LICENSE
author: Kevin Brubeck Unhammer
category: Natural Language Processing, Classification
maintainer: [email protected]
build-type: Simple
library
build-depends: base >=4.12 && <5
, bytestring
exposed-modules: Data.FastText
, Data.FastText.Internal
default-language: Haskell2010
include-dirs: cbits
cxx-sources: cbits/args.cc
cbits/autotune.cc
cbits/densematrix.cc
cbits/dictionary.cc
cbits/extern.cc
cbits/fasttext.cc
cbits/loss.cc
cbits/matrix.cc
cbits/meter.cc
cbits/model.cc
cbits/productquantizer.cc
cbits/quantmatrix.cc
cbits/utils.cc
cbits/vector.cc
-- from fastText's Makefile:
cxx-options: -pthread -std=c++11 -march=native -O3 -funroll-loops -DNDEBUG
extra-libraries: stdc++
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: Data.FastText
build-depends: base >=4.12 && <5
, bytestring
, fasttext
default-language: Haskell2010