Skip to content

Commit

Permalink
clean up merge
Browse files Browse the repository at this point in the history
  • Loading branch information
msuchard committed May 31, 2024
2 parents d6dfd26 + d674198 commit 608b359
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Cyclops
Type: Package
Title: Cyclic Coordinate Descent for Logistic, Poisson and Survival Analysis
Version: 3.4.0
Version: 3.4.1
Authors@R: c(
person("Marc A.", "Suchard", email = "[email protected]", role = c("aut","cre")),
person("Martijn J.", "Schuemie", role = "aut"),
Expand Down
9 changes: 8 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
develop
jni
==============

Changes:

1. add JNI interface for manipulating Cyclops objects in an across-language persistent cache

Cyclops v3.4.1
==============

Changes:
Expand Down
15 changes: 4 additions & 11 deletions src/cyclops/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,10 @@
// }
// #endif

#ifdef WIN_BUILD
#include <tr1/unordered_map>
namespace bsccs {
using std::tr1::unordered_map;
}
#else
#include <unordered_map>
namespace bsccs {
using std::unordered_map;
}
#endif
#include <unordered_map>
namespace bsccs {
using std::unordered_map;
}

namespace bsccs {

Expand Down
2 changes: 1 addition & 1 deletion tools/configure.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if (length(java_home) == 0) {
#################### CUDA Toolkit ####################

cuda_home <- system2(command = "find", args = c("/usr/local/", "-maxdepth", "1" ,"-name", "cuda"), stdout = TRUE)
if (TRUE || length(cuda_home)==0) {
if (TRUE || length(cuda_home)==0) { # By default, no CUDA build
message("no CUDA installation found; only compile host code")
} else {
message(paste0("using CUDA_HOME=", cuda_home))
Expand Down

0 comments on commit 608b359

Please sign in to comment.