search for: r_enable_jit

Displaying 5 results from an estimated 5 matches for "r_enable_jit".

2019 Oct 10
1
R-specific environment variables: Naming convention?
In base R, there are lots of environment variables with either prefix 'R_' or '_R_', e.g. R_ENABLE_JIT and _R_RNG_VERSION_. I always considered R_* variables to be "public" and _R_*_ ones being "internal" but realized I don't have a reference for this. Is this true, or is there another reason? Is the difference between the two kinds documented anywhere? Thank you, Henrik
2020 Aug 21
1
R 4.0.2 64-bit Windows hangs
...ackage 'base' byte-compiling package 'tools' sh: line 3: 3614 Done ( cat ./R/makeLazyLoad.R; echo "makeLazyLoading(\"tools\")" ) 3615 Segmentation fault | _R_COMPILE_PKGS_=1 R_COMPILER_SUPPRESS_ALL=1 R_DEFAULT_PACKAGES=NULL LC_ALL=C R_ENABLE_JIT=0 ../../../bin/x64/Rterm.exe --vanilla --no-echo > /dev/null make[2]: *** [Makefile.win:34: ../../../library/tools/R/tools.rdb] Error 139 make[1]: *** [Makefile.win:33: R] Error 1 make: *** [Makefile:18: all] Error 2 It looks to have compiled its own Rterm.exe, and segfaults when running it?...
2017 Aug 18
4
No rule to make target all.R, needed by compiler.rdb building R 3.4.1 from source, Scientific Linux release 6.9 (Carbon)
..../../library/compiler/Meta/nsInfo.rds* *if test -f DESCRIPTION; then \* * if test "" != ""; then \* * echo "tools:::.install_package_description('.', '../../../library/compiler', '')" | \* * R_DEFAULT_PACKAGES=NULL R_ENABLE_JIT=0 ../../../bin/R --vanilla --slave > /dev/null ; \* * else \* * echo "tools:::.install_package_description('.', '../../../library/compiler')" | \* * R_DEFAULT_PACKAGES=NULL R_ENABLE_JIT=0 ../../../bin/R --vanilla --slave > /dev/null ; \* *...
2016 Apr 09
2
Note: no visible definition
On 4/9/16 10:54 AM, Dirk Eddelbuettel wrote: > On 9 April 2016 at 10:28, Mick Jordan wrote: > | Can someone explain a message of this form from an rscript execution: > | > | Note: no visible global function definition for 'foo' > | > | > | This happens right at the start of execution. 'foo' is only executed in > | a branch of an 'if' that is not
2017 Oct 03
0
Revert to R 3.2.x code of logicalSubscript in subscript.c?
...vectors of length 1e8 like you did (which will not fit in cache) and vectors of length 1e5 (which will fit in at least the L3 cache). I ran tests on an Intel Skylake processor (E3-1270v5 @ 3.6GHz), using gcc 7.2 with -O3 -march=native -mtune=native. I got the following results with R-3.4.2 (with R_ENABLE_JIT=0, which is slightly faster than using the JIT compiler): R-3.4.2, LARGE VECTORS: > N <- 1e8; R <- 5 > #N <- 1e5; R <- 1000 > > x <- numeric(N) > i <- rep(FALSE, length(x))# no reycling > system.time(for (r in 1:R) a <- x[i]) user system...