Displaying 20 results from an estimated 22 matches for "doloop".
Did you mean:
ioloop
2006 May 09
1
Calling R from C
...the .Call interface. However, I ran into problems before even getting
started, and I hope (fear) I'm missing something completely obvious here.
I use the following C function (passing an integer to the C function and
printing it):
#include <R.h>
#include <Rinternals.h>
SEXP doloop(SEXP nt) {
int x=INTEGER(nt)[0];
Rprintf("x: %d \n", x);
SEXP ans;
PROTECT(ans=allocVector(REALSXP,1));
REAL(ans)[0]=0;
Rprintf("init ans: %f \n",REAL(ans)[0]);
UNPROTECT(1);
return(ans);
}
Which compiles without problems into a shared library
a...
2010 Apr 15
1
[PATCH matahari] Refactored the Host agent.
...management_object->set_arch(info.model);
+ management_object->set_memory(info.memory);
+ }
}
+ virConnectClose(connection);
- output << "End Node" << endl;
- return output;
-}
+ management_object->set_beeping(false);
-void HostWrapper::doLoop(void)
-{
- // Someday we might update statistics too!
- while(1)
+ // setup the nic objects
+ for(vector<NICWrapper*>::iterator iter = nics.begin();
+ iter != nics.end();
+ iter++)
{
- // update all statistics
- processors.update_load_averages();...
2004 Sep 20
1
compilation failed for package
...survival.so agexact.o agfit2.o agfit3.o agfit5.o agfit_null.o agmart2.o agmart.o agscore.o agsurv1.o agsurv2.o agsurv3.o char_date.o chinv2.o chinv3.o cholesky2.o cholesky3.o chsolve2.o chsolve3.o coxdetail.o coxfit2.o coxfit5.o coxmart.o coxph_wtest.o cox_Rcallback.o coxscho.o coxscore.o dmatrix.o doloop.o pyears1.o pyears2.o pyears3.o pystep.o surv_callback.o survdiff2.o survfit2.o survfit3.o survindex2.o survindex3.o survreg2.o survreg3.o survreg4.o survreg5.o
/usr/bin/ld: unrecognized option '--as-needed'
/usr/bin/ld: use the --help option for usage information
collect2: ld returned 1 ex...
2012 Nov 22
2
[LLVMdev] Disable loop unroll pass
...; ZDLBR L2050 {line: 0}
> Then, we let cg do things. Such a design abstract the general
> operations in optimizer, while target specific part in cg, still a
> simulated op, until cg loop optimization finished. We implement a
> multi nested level hwloop by this approach. Gcc's 3 doloop expand
> names do the same, we believe.
> |
>
> More details, please take a look at
>
> http://wiki.open64.net/index.php/Zero_Delay_Loop
>
> Thanks
> Gang
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipe...
2012 Nov 22
0
[LLVMdev] Disable loop unroll pass
..._I4,4> # sum {line: 5}
ZDLBR L2050 {line: 0}
Then, we let cg do things. Such a design abstract the general operations in optimizer, while target specific part in cg, still a simulated op, until cg loop optimization finished. We implement a multi nested level hwloop by this approach. Gcc's 3 doloop expand names do the same, we believe.
More details, please take a look at
http://wiki.open64.net/index.php/Zero_Delay_Loop
Thanks
Gang
在 2012-11-22,19:00,Ivan Llopard <ivanllopard at gmail.com> 写道:
> Hi Shuxin, Eli,
>
> On 22/11/2012 03:19, Shuxin Yang wrote:
>> Hi, Ivan:...
2005 Aug 29
0
Core dump during lazy loading of "survival" at installation time (PR#8106)
...ival.sl agexact.o agfit2.o agfit3.o agfit5.o agfit_null.o agmart.o agmart2.o
ags
core.o agsurv1.o agsurv2.o agsurv3.o char_date.o chinv2.o chinv3.o cholesky2.o
c
holesky3.o chsolve2.o chsolve3.o cox_Rcallback.o coxdetail.o coxfit2.o
coxfit5.o
coxmart.o coxph_wtest.o coxscho.o coxscore.o dmatrix.o doloop.o pyears1.o
pyear
s2.o pyears3.o pystep.o surv_callback.o survdiff2.o survfit2.o survfit3.o
survin
dex2.o survindex3.o survreg2.o survreg3.o survreg4.o survreg5.o
** R
** data
** moving datasets to lazyload DB
** inst
** preparing package for lazy loading
/bi/common/src/R-2.1.1/bin/INSTALL[325]...
2008 Dec 14
1
how to convert factors to numbers
Hello, I am relatively new to using R. I am using R version 2.8.0. I have a
program that downloads stock data from Yahoo! Finance and stores it to a
text file on my hard drive. The text file contains the date, opening price,
high price, low price, closing price, volume and adjusted price (i.e.,
adjusted for dividends and splits). I want to read and manipulate the data
in R. However, when I
2004 Sep 21
0
SV: compilation failed for package
...survival.so agexact.o agfit2.o agfit3.o agfit5.o agfit_null.o agmart2.o agmart.o agscore.o agsurv1.o agsurv2.o agsurv3.o char_date.o chinv2.o chinv3.o cholesky2.o cholesky3.o chsolve2.o chsolve3.o coxdetail.o coxfit2.o coxfit5.o coxmart.o coxph_wtest.o cox_Rcallback.o coxscho.o coxscore.o dmatrix.o doloop.o pyears1.o pyears2.o pyears3.o pystep.o surv_callback.o survdiff2.o survfit2.o survfit3.o survindex2.o survindex3.o survreg2.o survreg3.o survreg4.o survreg5.o
> /usr/bin/ld: unrecognized option '--as-needed'
> /usr/bin/ld: use the --help option for usage information
> collect2: l...
2012 Nov 22
3
[LLVMdev] Disable loop unroll pass
Hi Shuxin, Eli,
On 22/11/2012 03:19, Shuxin Yang wrote:
> Hi, Ivan:
>
> My $0.02. hasZeroCostLooping() disabling unrolling dose not seem
> to be
> appropriate for other architectures, at least the one I worked before.
I appreciate your feed-back. Could you give an example where building a
hw loop is not appropriate for your target?
>
> You mentioned:
>
2012 Nov 22
0
[LLVMdev] Disable loop unroll pass
...ine: 5}
>> ZDLBR L2050 {line: 0}
>> Then, we let cg do things. Such a design abstract the general operations in optimizer, while target specific part in cg, still a simulated op, until cg loop optimization finished. We implement a multi nested level hwloop by this approach. Gcc's 3 doloop expand names do the same, we believe.
>>
>> More details, please take a look at
>>
>> http://wiki.open64.net/index.php/Zero_Delay_Loop
>>
>> Thanks
>> Gang
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: &l...
2005 Apr 07
3
R-beta 2004-04-07 build failed on AIX
...survival.so agexact.o agfit2.o agfit3.o agfit5.o agfit_null.o agmart.o
agmart2.o agscore.o agsurv1.o agsurv2.o agsurv3.o char_date.o chinv2.o
chinv3.o cholesky2.o cholesky3.o chsolve2.o chsolve3.o cox_Rcallback.o
coxdetail.o coxfit2.o coxfit5.o coxmart.o coxph_wtest.o coxscho.o coxscore.o
dmatrix.o doloop.o pyears1.o pyears2.o pyears3.o pystep.o surv_callback.o
survdiff2.o survfit2.o survfit3.o survindex2.o survindex3.o survreg2.o
survreg3.o survreg4.o survreg5.o -lm
gmake[3]: Leaving directory `/ltmp/R.INSTALL.5603432/survival/src'
** R
** data
** moving datasets to lazyload DB
** inst
** pr...
2010 Mar 22
1
Resend with loadavg as a statistic...
After some feedback from Slow, mainly about the load_average API
being a method rather than an ongoing statistic. So I've converted
the code over to instead update the load average statistic on a
regular basis.
2015 Apr 16
2
[LLVMdev] Compile SPEC2006 with clang-3.2, multi definition errors.
...ap.bc mkdeps.bc prefix.bc version.bc mbchar.bc alias.bc bb-reorder.bc
bitmap
.bc builtins.bc caller-save.bc calls.bc cfg.bc cfganal.bc cfgbuild.bc
cfgcleanup.bc cfglayout.bc cfgloop.bc cfgrtl.bc combine.bc conflict.bc
convert.bc cse.b
c cselib.bc dbxout.bc debug.bc dependence.bc df.bc diagnostic.bc doloop.bc
dominance.bc dwarf2asm.bc dwarf2out.bc dwarfout.bc emit-rtl.bc except.bc
explow.bc
expmed.bc expr.bc final.bc flow.bc fold-const.bc function.bc gcse.bc
genrtl.bc ggc-common.bc global.bc graph.bc haifa-sched.bc hash.bc
hashtable.bc hooks.bc
ifcvt.bc insn-attrtab.bc insn-emit.bc insn-extract.bc...
2006 Jul 10
1
[LLVMdev] enabling Debian x86_64 for llvm 1.7
...anal.o cfgloopmanip.o loop-init.o
loop-unswitch.o loop-unroll.o cfgrtl.o combine.o conflict.o convert.o
coverage.o cse.o cselib.o tree-ssa-loop-prefetch.o
tree-ssa-loop-memset.o dbxout.o ddg.o tree-ssa-loop-ch.o
loop-invariant.o tree-ssa-loop-im.o debug.o df.o diagnostic.o dojump.o
dominance.o loop-doloop.o dwarf2asm.o dwarf2out.o emit-rtl.o except.o
explow.o loop-iv.o expmed.o expr.o final.o flow.o fold-const.o
function.o gcse.o genrtl.o ggc-common.o global.o graph.o gtype-desc.o
haifa-sched.o hooks.o ifcvt.o insn-attrtab.o insn-emit.o insn-modes.o
insn-extract.o insn-opinit.o insn-output.o insn-pe...
2010 Mar 15
0
[PATCH] Updated the list of ignored files and fixed whitespace issues.
...nagementMethod(uint32_t methodId, Args& args, string& text);
-
+
// Field Accessors
const string &getUUID(void) { return uuid; }
const string &getHostname(void) { return hostname; }
@@ -93,4 +93,3 @@ class HostWrapper : public Manageable
// Main Loop
void doLoop(void);
};
-
diff --git a/src/main.cpp b/src/main.cpp
index d51c4d9..002a02e 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009 Red Hat, Inc.
+/* main.cpp - Copyright (C) 2009 Red Hat, Inc.
* Written by Arjun Roy <arroy at redhat.com>
*
* This program is...
2007 Apr 27
2
[LLVMdev] Boostrap Failure -- Expected Differences?
...rs
./insn-attrtab.o differs
./insn-emit.o differs
./insn-extract.o differs
./insn-output.o differs
./insn-preds.o differs
./insn-recog.o differs
./integrate.o differs
./jump.o differs
./lambda-code.o differs
./lambda-mat.o differs
./langhooks.o differs
./lcm.o differs
./local-alloc.o differs
./loop-doloop.o differs
./loop-init.o differs
./loop-invariant.o differs
./loop-iv.o differs
./loop.o differs
./loop-unroll.o differs
./loop-unswitch.o differs
./modulo-sched.o differs
./optabs.o differs
./opts.o differs
./params.o differs
./passes.o differs
./postreload-gcse.o differs
./postreload.o differs
./p...
2009 Mar 04
2
[LLVMdev] Fwd: PPC Nightly Build Result
...t; SandBox/NightlyTest/llvmCore.roots/llvmCore~dst/Developer/usr/local/
> include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -
> D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' /Volumes/
> SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/src/gcc/loop-
> doloop.c -o loop-doloop.o
> /Volumes/SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/obj-
> powerpc-powerpc/./prev-gcc/xgcc -B/Volumes/SandBox/NightlyTest/
> llvmgcc42.roots/llvmgcc42~obj/obj-powerpc-powerpc/./prev-gcc/ -B/
> Developer/usr/llvm-gcc-4.2/powerpc-apple-darwin9/bin/ -c -g -...
2011 Aug 06
2
[LLVMdev] llvm-gcc near tip causing crash in /usr/bin/ld due to memory corruption on linux x86_64
..._s.so.1 lists.o llvm-convert.o llvm-linker-hack.o local-alloc.o loop-invariant.o loop-unswitch.o
lambda-mat.o lcm.o libgcc/ libgcc_eh.a libgcc_s.so.1.tmp llvm-abi-default.o llvm-debug.o llvm-main.o loop-doloop.o loop-iv.o
lambda-trans.o libada-mk libgcc.a libgcc_s.so@ libgcov.a llvm-backend.o llvm-i386.o llvm-types.o loop-init.o loop-unroll.o
<gcc/./_lshrdi3_s.o libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o li...
2009 Mar 05
0
[LLVMdev] Fwd: PPC Nightly Build Result
...lyTest/llvmCore.roots/llvmCore~dst/Developer/usr/local/
> > include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -
> > D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' /Volumes/
> > SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/src/gcc/loop-
> > doloop.c -o loop-doloop.o
> > /Volumes/SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/obj-
> > powerpc-powerpc/./prev-gcc/xgcc -B/Volumes/SandBox/NightlyTest/
> > llvmgcc42.roots/llvmgcc42~obj/obj-powerpc-powerpc/./prev-gcc/ -B/
> > Developer/usr/llvm-gcc-4.2/powerpc-apple-darwi...
2009 Mar 05
1
[LLVMdev] Fwd: PPC Nightly Build Result
...ore.roots/llvmCore~dst/Developer/usr/local/
>>> include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -
>>> D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' /Volumes/
>>> SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/src/gcc/loop-
>>> doloop.c -o loop-doloop.o
>>> /Volumes/SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/obj-
>>> powerpc-powerpc/./prev-gcc/xgcc -B/Volumes/SandBox/NightlyTest/
>>> llvmgcc42.roots/llvmgcc42~obj/obj-powerpc-powerpc/./prev-gcc/ -B/
>>> Developer/usr/llvm-gcc-4.2/powerpc...