-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepare for submission
- Loading branch information
Showing
5 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
make a function which can take a function input which yields the input for | ||
each chunk to allow for larger data sets that do not fit in memory | ||
make a method like `speedglm` which computes the cross product of the weighted | ||
design matrix which is faster but less stable | ||
the Armadillo `rows` may be slow when the copy is made? | ||
the Armadillo `rows` may be slow when the copy is made? | ||
there may be an overhead with the current abstract family class | ||
fix issue with order in `summary.glm` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
## Test environments | ||
* Ubuntu 18.04 LTS | ||
R version 3.5.3 | ||
* Ubuntu 14.04.5 LTS (on travis-ci with codename: trusty) | ||
R version 3.5.2 | ||
* win-builder (devel and release) | ||
* Local Ubuntu 18.04 with R 3.5.2 and with clang 6.0.0 with ASAN and | ||
* Ubuntu 18.04 LTS with gcc 8.3.0 | ||
R version 3.6.1 | ||
* Ubuntu 16.04 LTS (on travis-ci) | ||
R version 3.6.1 | ||
* Ubuntu 18.04 LTS with gcc 8.3.0 with --enable-lto | ||
R devel (2019-11-06 r77376) | ||
* Ubuntu 18.04 LTS with clang 6.0.0 with ASAN and | ||
UBSAN checks | ||
* The following rhub platforms: | ||
fedora-clang-devel | ||
fedora-gcc-devel | ||
debian-gcc-patched | ||
debian-gcc-devel | ||
debian-gcc-release | ||
linux-x86_64-rocker-gcc-san | ||
solaris-x86-patched | ||
|
||
R devel (2019-11-06 r77376) | ||
* win-builder (devel and release) | ||
* `rhub::check_on_solaris()` | ||
|
||
## R CMD check results | ||
There were no ERRORs, or WARNINGs. There is a NOTE on `fedora-gcc-devel` | ||
on rhub, my local machine, and `debian-gcc-release` on rhub about the size | ||
of the package. | ||
|
||
## Resubmission | ||
`R CMD check --use-valgrind --as-cran` passes without any errors. | ||
The LTO issue have been solved. There is a note about the size of the | ||
package on some platforms. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
PKG_CPPFLAGS = -DUSE_FC_LEN_T | ||
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters