search for: njobs

Displaying 8 results from an estimated 8 matches for "njobs".

Did you mean: jobs
2007 Jul 25
6
Using R_MakeExternalPtr
...reinterpret_cast<Session*>(temp); The error I get when trying to run the R function is : *** caught segfault *** address 0x3, cause 'memory not mapped' Traceback: 1: .Call("soamSubmit", counter, sesCon, final.script, packages) 2: soam.Rapply(x, tester, join.method = c, njobs = 2) So it seems like a scoping problem to me, though I'm unsure how to solve it. -Jon -- View this message in context: http://www.nabble.com/Using-R_MakeExternalPtr-tf4142904.html#a11785023 Sent from the R devel mailing list archive at Nabble.com.
2019 Jan 25
0
[klibc:update-dash] [JOBS] Fix off-by-one error for multiple of four job numbers
...ent.org.uk> --- usr/dash/jobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/dash/jobs.c b/usr/dash/jobs.c index 009bbfee..1c6c6fbd 100644 --- a/usr/dash/jobs.c +++ b/usr/dash/jobs.c @@ -698,7 +698,7 @@ check: if (is_number(p)) { num = atoi(p); - if (num < njobs) { + if (num <= njobs) { jp = jobtab + num - 1; if (jp->used) goto gotit;
2019 Jan 25
0
[klibc:update-dash] jobs: Don't attempt to access job table for job %0
...nt.org.uk> --- usr/dash/jobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/dash/jobs.c b/usr/dash/jobs.c index 1c6c6fbd..7c324b76 100644 --- a/usr/dash/jobs.c +++ b/usr/dash/jobs.c @@ -698,7 +698,7 @@ check: if (is_number(p)) { num = atoi(p); - if (num <= njobs) { + if (num > 0 && num <= njobs) { jp = jobtab + num - 1; if (jp->used) goto gotit;
2020 Mar 28
0
[klibc:update-dash] dash: jobs: Don't attempt to access job table for job %0
...nt.org.uk> --- usr/dash/jobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/dash/jobs.c b/usr/dash/jobs.c index c9b631ac..49c14441 100644 --- a/usr/dash/jobs.c +++ b/usr/dash/jobs.c @@ -698,7 +698,7 @@ check: if (is_number(p)) { num = atoi(p); - if (num <= njobs) { + if (num > 0 && num <= njobs) { jp = jobtab + num - 1; if (jp->used) goto gotit;
2020 Mar 28
0
[klibc:update-dash] dash: [JOBS] Fix off-by-one error for multiple of four job numbers
...ent.org.uk> --- usr/dash/jobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/dash/jobs.c b/usr/dash/jobs.c index b9ff1402..c9b631ac 100644 --- a/usr/dash/jobs.c +++ b/usr/dash/jobs.c @@ -698,7 +698,7 @@ check: if (is_number(p)) { num = atoi(p); - if (num < njobs) { + if (num <= njobs) { jp = jobtab + num - 1; if (jp->used) goto gotit;
2006 Feb 02
0
RJS Template rendering viewable code
Hi, I''m adding some RJS templates to my application and everything seams to function properly except the final rendering shows the javascript code created by the template and what I think are line breaks. The same partial is used in two other places and seams to work fine when called from an RHTML file. Rendered: new Effect.Fade(''job14'',{});
2013 May 08
0
Using the Sun Grid Engine with R-3.0
...ines below: require(Rsge) sge.options("sge.qsub.options"="-cwd -q GT -pe smp 8 -l C=2") sge.options("sge.save.global"=TRUE) sge.options("sge.remove.files"=TRUE) jobList = list( ....) myJobFunc = function(x) {....} result = sge.parLapply(jobList, myJobFunc, njobs=length(jobList)) Many thanks Hubert Rehrauer
2014 Apr 24
1
50% performance of custom R build compared to PPA R for a command
...sr/bin/unzip R_ZIPCMD=/usr/bin/zip R_PRINTCMD=/usr/bin/lpr LIBnn=lib AWK=/usr/bin/awk CC="gcc" CFLAGS="-ggdb -pipe -std=gnu99 -Wall -pedantic" CXX="g++" CXXFLAGS="-ggdb -pipe -Wall -pedantic" FC="gfortran" F77="gfortran" MAKE="make -j$NJOBS" "${repoDir}/configure" --prefix=/usr/local/lib/R-devel --enable-R-shlib --with-blas --with-lapack --with-readline --without-recommended-packages > ../build-logs/configure 2>&1 I'm using R-devel updated to today's revision but I compiled a version from a year ago a...