Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restore -DARMA_64BIT_WORD=1 #92

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: seededlda
Type: Package
Title: Seeded Sequential LDA for Topic Modeling
Version: 1.4.0
Version: 1.4.1
Authors@R: c(person("Kohei", "Watanabe", email = "[email protected]", role = c("aut", "cre", "cph")),
person("Phan", "Xuan-Hieu", email = "[email protected]", role = c("aut", "cph"), comment = "GibbsLDA++"))
Description: Seeded Sequential LDA can classify sentences of texts into pre-define topics with a small number of seed words (Watanabe & Baturo, 2023) <doi:10.1177/08944393231178605>.
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Changes in v1.4.1

- Fix regression in 1.4.0 on Linux-like OS.

## Changes in v1.4.0

- Use configure to link the TBB library on MacOS.
Expand Down
3 changes: 2 additions & 1 deletion src/Makevars.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) @TBB_LIBS@
PKG_CXXFLAGS = -I../inst/include @TBB_CFLAGS@
PKG_CXXFLAGS = -I../inst/include @TBB_CFLAGS@ -DARMA_64BIT_WORD=1
PKG_CPPFLAGS = -DARMA_DONT_PRINT_OPENMP_WARNING
Loading