search for: ere

Displaying 20 results from an estimated 173 matches for "ere".

Did you mean: are
2015 Jul 27
15
[LLVMdev] Help with using LLVM to re-compile hot functions at run-time
Hi Again, I'm a little confused regarding what is the exact Orc's functions I should use in order to save the functions code in a code cache so it could be later replaced with different versions of it and I appreciate your help. Just a reminder I want to dynamically recompile the program based on profile collected at the run-time. I would like to start executing the program from the code-cache and at some point be able to replace a function body with it's new compiled v...
2015 Jul 20
2
[LLVMdev] Help with using LLVM to re-compile hot functions at run-time
Hello Lang, Thanks for your answer. I am now looking for an example of the usage of CompileOnDemandLayer. Is there an example available for that (could not find one in llvm/examples)? Thanks, Revital From: Lang Hames <lhames at gmail.com> To: Revital1 Eres/Haifa/IBM at IBMIL Cc: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> Date: 10/07/2015 12:10 AM Subject: Re: [LLVMd...
2015 Jul 20
0
[LLVMdev] Help with using LLVM to re-compile hot functions at run-time
Hi Revital, The CompileOnDemand layer is used by the lazy bitcode JIT in the lli tool. You can find the code in llvm/tools/lli/OrcLazyJIT.* . Cheers, Lang. On Mon, Jul 20, 2015 at 2:32 AM, Revital1 Eres <ERES at il.ibm.com> wrote: > Hello Lang, > > Thanks for your answer. > > I am now looking for an example of the usage of CompileOnDemandLayer. Is > there an example available for that (could not find one in llvm/examples)? > > Thanks, > Revital > > > &gt...
2012 Nov 16
4
[LLVMdev] Proposal: Enhance FileCheck's variable matching capabilities
...ame line it matched. For example, I would want to write this: ; CHECK: bic [[REG:r[0-9]+]], [[REG]], #3 But I currently can't because [[REG]] will only match a REG variable defined on a _previous_ line. As the FileCheck ref manual (http://llvm.org/docs/CommandGuide/FileCheck.html) mentions, there are known workarounds like having two separate CHECK lines. However, this is a hacky and inelegant solution that makes code less readable. I hope the rationale for the code above is clear: I want my instruction to be acting on the same register, though I don't care which (and don't want th...
2015 Jul 28
0
[LLVMdev] Help with using LLVM to re-compile hot functions at run-time
...have the concept of an ObjectCache, which is a long-lived, potentially persistent, compiled version of some IR. It's not a key component of the JIT though: Most clients run without a cache attached and just JIT their code from scratch in each session. Recompilation is orthogonal to caching. There is no in-tree support for recompilation yet. There are several ways that it could be supported, depending on what security / performance trade-offs you're willing to make, and how deep in to the LLVM code you want to get. As things stand at the moment all function calls in the lazy JIT are indi...
2006 Jun 28
0
RV: RV: error in VB6 aplication
...lar to the aplication in windows whe it not conect to the MS SQL server I think that the ADO 2.0 fail in wine. I use Suse Linux 10.0 with wine 0.9.16 I reinstall the ADO 2.0 via wine but nothing thanks , arturo err:ole:CoGetClassObject class {6c736db1-bd94-11d0-8a23-00aa00b58e10} not regist ered err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10} could be created for context 0x1 err:ole:CoGetClassObject class {6c736db1-bd94-11d0-8a23-00aa00b58e10} not regist ered err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10} could be created fo...
2004 Aug 23
0
A troubled state of freedom: generalized linear models wh ere number of parameters > number of samples
...> of freedom drops to 0) > > What kind of methods can I use to make sense of this? > > I have a subsequent set of samples to work on to validate the results > of this glm, so I am not sure if overfitting is really a problem. > > Background: this is a microarray study, where I have divided the > samples in the training set into 2 groups, and generated a number of > genes to differentiate between both groups. I am going to use the GLM > in a subsequent regression analysis to determine survival. For this > purpose, I need to generate some kind of score for ea...
2010 Mar 31
2
Simplifying particular piece of code
...t;CRT.AV120", stdev="CRT.SD120")) mrets <- merge(mrets, GTF.SR=apply(mrets, 1, MyFunc, ret="GTF.AV120", stdev="GTF.SD120")) mrets <- merge(mrets, ERU.SR=apply(mrets, 1, MyFunc, ret="ERU.AV120", stdev="ERU.SD120")) mrets <- merge(mrets, ERE.SR=apply(mrets, 1, MyFunc, ret="ERE.AV120", stdev="ERE.SD120")) mrets <- merge(mrets, EPT.SR=apply(mrets, 1, MyFunc, ret="EPT.AV120", stdev="EPT.SD120")) mrets <- merge(mrets, EVA.SR=apply(mrets, 1, MyFunc, ret="EVA.AV120", stdev="EVA.SD1...
2006 Jun 28
2
RV: error in VB6 aplication
...al unimplemented for type 3. Returning 0 palette. fixme:ole:OLEPictureImpl_Render Not quite correct implementation of rendering ic ons... fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette. err:ole:CoGetClassObject class {6c736db1-bd94-11d0-8a23-00aa00b58e10} not regist ered err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10} could be created for context 0x1 err:ole:CoGetClassObject class {6c736db1-bd94-11d0-8a23-00aa00b58e10} not regist ered err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10} could be created fo...
2012 Nov 17
0
[LLVMdev] Proposal: Enhance FileCheck's variable matching capabilities
If I understand correctly, the desire is to change the current behavior in a kind of subtle way. Is there some way you could instrument trunk's FileCheck to die if the old behavior is encountered, and use that to definitively find all tests which rely on the current behavior and migrate them (possibly to an interim solution) in preparation for the change in semantics? How much is the old (i.e. cur...
2015 Jul 09
2
[LLVMdev] Help with using LLVM to re-compile hot functions at run-time
Hello, I am new to LLVM and a I appreciate your help with the following: I want to run the LLVM IR through virtual machine (LLVM interpreter?) and jit compile the hot functions (using MCJIT). This task will require amongst other identifying the hot functions and having a code cache that should be patched with the native code of the functions after they are jitted. I've read so far about
2011 Feb 17
2
Rd2pdf error in R12.0
...survfit.Rd Creating pdf output from LaTeX ... Error in texi2dvi("Rd2.tex", pdf = (out_ext == "pdf"), quiet = FALSE, : Running 'texi2dvi' on 'Rd2.tex' failed. Messages: sh: texi2dvi: command not found Output: Error in running tools::texi2dvi --------------- Here is the header when invoking the newer version: R version 2.12.0 (2010-10-15) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: x86_64-unknown-linux-gnu (64-bit) The R11 call is 2.11.0, same machine, same login session. I've looked in the manuals and...
2016 Feb 17
2
problems gpupdate and domain-trust
...te having a trust with a M$ -ADS domain. Before creating the trust gpupdate worked fine. Then i added the trust and then gpupdate gives the following error: Updating policy... Computer Policy update has completed successfully. User Policy could not be updated successfully. The following errors were encount ered: The processing of Group Policy failed. Windows could not determine if the user a nd computer accounts are in the same forest. Ensure the user domain name matches the name of a trusted domain that resides in the same forest as the computer ac count. ----------- The trust works fine...
2012 Mar 22
2
[LLVMdev] Sorting relocation entries
...lt;(const ELFRelocationEntry &RE) const { > - return RE.r_offset < r_offset; > - } > - }; > + typedef MCELFObjectTargetWriter::ELFRelocationEntry ELFRelocationEntry; Scoping operators shouldn't be typedefed away. Spell it out explicitly when the type is referenced. It makes the code clearer, though a bit more verbose. That said, with the above tweak to move the relocation type out to the top level, there shouldn't need to be any explicit scope resolution. > /// The target specific ELF writer instance. > llvm::OwningPtr<MCELFObject...
2013 Nov 13
2
determinacion del tamaño de la muestra
...-muestreo-para-poblaciones-finitas/9788426011985/375002 > > > > Si no siempre le queda buscar en > > > > http://cran.r-project.org/web/packages/available_packages_by_name.html > > Control + F busca sample > > Haciendo una busqueda superficial podría ser que le interesasen > > elec.strat <http://cran.r-project.org/web/packages/elec.strat/index.html > > > > powerMediation< > http://cran.r-project.org/web/packages/powerMediation/index.html> > > powerSurvEpi< > http://cran.r-project.org/web/packages/powerSurvEpi/index.html&...
2012 Jun 02
5
error trying ENC.
Hello, I''m trying to use External Node classification and I have not idea what is my mistake. I getting the following error : err: Could not retrieve catalog from remote server: Error 400 on SERVER: undefined method `downcase'' for ["hola", {"mens"=>"HOLA"}]:Array on node casa I have a very simple parameter class : class hola( $mens =
2018 Feb 06
2
[RFC] virtio-iommu version 0.6
...Sources: git://linux-arm.org/virtio-iommu.git viommu/v0.6 I didn't receive any comment for v0.5 [1], so this update is fairly light: * Changed range definition in map and unmap requests * Use virtio-iommu device ID * Update IORT node ID and simplify layout The following document shows the difference between v0.5 and v0.6: http://jpbrucker.net/virtio-iommu/spec/diffs/virtio-iommu-pdf-diff-v0.5-v0.6.pdf Next version will hopefully add vSVA (PASID+PRI) and/or architectural optimizations, but I can't provide a timeline yet. I'll probably send a small draft first. I will send the Linux...
2010 May 18
3
"Re: Change class factor to numeric"
...ct. I do resend again. Please excuse me. > Hello > I have a data array with soil variables (caperf), in which the variable "clay" is factor (as I see entering str(caperf)) . I need to do a regression model, so I need to have arcilla (=clay) as a numeric variable. For that I have entered > > as.numeric(as.character(arcilla)) > > and even entering > 'as.numeric(levels(arcilla))[arcilla]'the variable is resting as factor, and the linear model is not valid (for my purposes). > The decimal commas have been converted to decimal points, so I have no idea of wha...
2012 Mar 23
0
[LLVMdev] Sorting relocation entries
...ntry &RE) const { >> -        return RE.r_offset < r_offset; >> -      } >> -    }; >> +    typedef MCELFObjectTargetWriter::ELFRelocationEntry ELFRelocationEntry; > > Scoping operators shouldn't be typedefed away. Spell it out explicitly when the type is referenced. It makes the code clearer, though a bit more verbose. That said, with the above tweak to move the relocation type out to the top level, there shouldn't need to be any explicit scope resolution. > >>      /// The target specific ELF writer instance. >>      llvm::OwningPtr&lt...
2016 Mar 29
2
samba 4.4 gpupdate /force
command prompt >> run as administrator Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Users\btombul>gpupdate /force Updating Policy... User policy could not be updated successfully. The following errors were encount ered: The processing of Group Policy failed. Windows could not apply the registry-base d policy settings for the Group Policy object LDAP://CN=User,CN={31B2F340-016D-1 1D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=facility,DC=local. Group Policy settings will not be resolved until this e...