Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Edge Profiling"
2013 Jan 31
0
[LLVMdev] Edge Profiling
Hello,
See answers below
On 31/01/13 00:23, César wrote:
> Hello.
>
> I'm using these commands to compile the code below in order to collect
> edge/blocks profiling:
>
> clang -emit-llvm -c sort.c -o sort.bc
> opt -insert-edge-profiling sort.bc -o sort_prof.bc
> clang sort_prof.bc -lprofile_rt -L/llvms/lib -o sort_prof
>
> then I run the program and display the
2012 Sep 10
1
[LLVMdev] Profiling - execution count of basic blocks...
Hi gang, time for my weekly confusion... (I'm trying not to bombard the
board with questions)
The thing that's on my mind at the moment (there's some backend-stuff that
I'm just working my way though) is that I'm not getting very far when
trying to get LLVM to profile code - I'm looking for nothing more special
than list of how many times each basic block has been called
2011 Sep 04
2
what is wrong with my quicksort?
Hey guys,
I tried to program quicksort like this but somethings wrong.
please help
>partition <- function(x, links, rechts){
>
> i <- links
> j <- rechts
> t <- 0
> pivot <- sample(x[i:j],1)
>
> while(i <= j){
>
> while(x[i] <= pivot){
> i = i+1}
>
> while(x[j] >= pivot){
> j = j-1}
>
> if( i
2013 May 20
4
Código del algoritmo de qnorm
Cordial saludo para cada uno.
De manera amable les pido ayuda para acceder al código R usado para el
algoritmo de la función qnorm.
Gracias por su ayuda.
César Escalante C.
[[alternative HTML version deleted]]
2009 Nov 28
2
R en Windows 7 a 64 bits
Buenas noches para cada uno.
Me alegra saber que superamos los 200 usuarios y tengos expectativas con
respecto a la I Conferencia de R-hispano en Murcia.
No soy usuario de Linux por desconocimiento, algo que lamento. Debo instalar
R en un equipo con Windows 7 a 64 bits. ¿Podrían indicarme por favor cómo
instalarlo? ¿Se hace con el mismo archivo R-2.10.0-win32? ¿Debo cuidar o
cambiar algo antes o
2009 Nov 28
2
R en Windows 7 a 64 bits
Buenas noches para cada uno.
Me alegra saber que superamos los 200 usuarios y tengos expectativas con
respecto a la I Conferencia de R-hispano en Murcia.
No soy usuario de Linux por desconocimiento, algo que lamento. Debo instalar
R en un equipo con Windows 7 a 64 bits. ¿Podrían indicarme por favor cómo
instalarlo? ¿Se hace con el mismo archivo R-2.10.0-win32? ¿Debo cuidar o
cambiar algo antes o
2013 Dec 18
2
Generación de vectores aleatorios dependientes
Reciban un saludo cordial.
Por favor, ¿en cuál biblioteca de R existe una función para generar
vectores aleatorios correlacionados, por ejemplo (X,Y), con X~Weibull y
Y~Lognormal y corr(X,Y) = 0.7?
Gracias desde ya por su atención/ayuda.
César Escalante C.
[[alternative HTML version deleted]]
2012 Oct 03
0
[LLVMdev] Does LLVM optimize recursive call?
> Only if the recursion is very deep. In practice, a recursive descent
> parser isn't going to run out of stack space, nor will a quicksort or
> binary-tree walker,
The recursive-descent parser case has happened in practice:
http://my.opera.com/hallvors/blog/2012/07/17/twitter-crashes-itself-with-commas?1
Also, I've seen some recursion-related PR's in Clang, although I think
2017 Jul 26
0
[R-pkgs] New Package vetr: Enforce Structural Requirements for S3 Objects
`vetr` implements a declarative template-based approach to verify that objects
meet structural requirements, and auto-composes error messages when they do not.
This package is intended to simplify a more formal use of S3 objects.
The template concept is borrowed from `vapply`:
>> vet(numeric(1L), 1:3)
>? [1] "`1:3` should be length 1 (is 3)"
>> vet(numeric(1L),
2010 Oct 25
2
Ayuda con una función
Reciban un cordial saludo.
De manera muy comedida les pido ayuda con la función indicada abajo. La usan
en un artículo de inventarios. No veo dónde estoy errado.
Gracias de antemano.
César Escalante C.
> lamb<-50
> L<-1
> h.<-10
> p<-25
> K<-5
> integ<-function(y){integrate(function(x)ppois(x,lamb*L),0,y)$value}
> G<-function(y){(h.+p)*integ(y) +
2012 Jun 06
2
[LLVMdev] [PATCH] 8975 - llc should warn about invalid target triple
I changed Module::setTargetTriple to return true/false when an
invalid/valid triple is passed as parameter.
The validation is made using the ADT/Triple.cpp
Last I modified LLParser::ParseTargetDefinition() to check if the
return of setTargetTriple warns about an invalid triple.
John.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 8975.diff
Type:
2018 Jan 04
4
Fwd: LLD (macOS) usage?
Hi. I'm using LLVM 5.0.1 on macOS 10.12.
I have a very simple program (program.c):
int main() {}
When attempting to compile with LLD, I get this output:
$ clang -fuse-ld=lld program.c
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -no_deduplicate
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -dynamic
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -arch
2009 Oct 06
2
Ajuste de distribuciones
Buenos días para cada una/o.
Acabo de suscribirme. Tengo una inquietud que vi tratada por partes (y usando distintos paquetes) en las consultas anteriores.
¿Cuál es la mejor forma de ajustar distribuciones datos a distribuciones de probabilidad teóricas? ¿Cuáles son los paquetes para hacerlo en forma ágil?
Gracias por su atención.
Saludos.
César Escalante C.
2012 Jun 07
0
[LLVMdev] [PATCH] 8975 - llc should warn about invalid target triple
Hi César,
> I changed Module::setTargetTriple to return true/false when an
> invalid/valid triple is passed as parameter.
target triples with unknown vendor and other fields occur all the time.
That's fine as long as you don't need those fields. What I am saying is
that a boolean value "valid" or "not valid" isn't very useful in my opinion.
Ciao, Duncan.
2012 Jun 14
2
[LLVMdev] Bitcode Instruction ID
Hello,
I'm modifying the LLI interpreter to count the number of times that
each instruction in a bitcode file is interpreted, however to do this
I need to assign an identifier to each instruction in the file. Is
there currently any kind of instruction ID that I could use to solve
this?
César.
2020 Mar 23
2
PLSPM_Gastón Sanchez
Saludos a todos.
Tengo que aplicar:
Two-Step Approach (patch approach)
Hybrid Approach (give away approach)
De acuerdo al libro de Gaston Sanchez "PLS Path Modeling with R".
¿Alguien puede apoyarme?
--
*César O. Velázquez Vega**.*
[[alternative HTML version deleted]]
2016 Mar 16
0
Go Bindings and govet
On Wed, 16 Mar 2016 at 05:55 Eric Christopher <echristo at gmail.com> wrote:
> Hi Andrew, Peter,
>
> I took a look at the results of running govet on the go bindings - there
> are a lot of small/simple problems that should probably be looked at. Wrong
> number of arguments a few times, shifts by > 32, etc.
>
Did you just run "go vet
2008 Oct 11
6
[LLVMdev] 2.4 Pre-release (v1) Available for Testing
On Sat, Oct 11, 2008 at 1:24 PM, Kenneth Boyd <zaimoni at zaimoni.com> wrote:
> /* snip */
Actually, my biggest issue with llvm (which highly impacts testing as
well) is the use of abort(), which I have resolved in my local copy by
just searching for the full word "abort" everywhere and just replacing
them with exceptions that relay what happened. Reason this is my
biggest
2003 Sep 01
0
Antigen found VIRUS= Win32.Sobig.F (CA(Vet), NAI, Kaspersky) virus
Geachte gebruiker,
U probeert een attachment te versturen met een virus. Het betreft het attachment movie0045.pif dat u heeft gestuurd naar . Het attachment is besmet met het virus: VIRUS= Win32.Sobig.F (CA(Vet),NAI,Kaspersky).
Het bericht "Re: That movie" was verzonden vanaf samba@samba.org. De status van de attachment is: Purged.
Deze mail is uitsluitend ter informatie, u hoeft
2011 May 01
2
Marginal a partir de la densidad conjunta
Cordial saludo.
Estoy trabajando con una densidad conjunta algo elaborada (suma y cociente
de dos variables aleatorias positivas usando la cópula Frank) y requiero
encontrar la distribución marginal de cada una de las variables. A manera de
ejemplo (no es el caso específico, que tiene mucho más código), si partimos
de la distribución exponencial bivariada
#-----
theta<-0.5