search for: pmf

Displaying 20 results from an estimated 42 matches for "pmf".

Did you mean: pmd
2005 Oct 20
1
[LLVMdev] llvm-test Makefile question
...to do something similar to the profiling target in the llvm-test suite makefiles, but I'm not a gmake expert, so I am stumped on something: I did some copy-and-paste of the profile code in llvm-test/Makefile.programs and got it working within SingleSource/Benchmarks, where I can say 'make pmf' or 'make profile' and get a build with profiling results or my own stuff. This works in any leaf directory I've tried so far. The problem is that other directories, like the top level, or say MultiSource/Benchmarks/, neither 'make profile' nor 'make pmf' work. It s...
2006 Mar 21
3
[LLVMdev] problem loading analysis results from Inliner pass
...y know. I would guess that it's a > function pass which is getting killed before you pass runs. > -debug-pass=Structure should help figure out if that's the case. using -debug-pass=Structure does show me that my pass is loaded and killed immediately. Here's a sample. "Dummy PMF Interface" is the noop default implementation of the "PMFAnalysis" analysis group, while "PMF File Loader" is the real implementation that I'm interested in. Pass Arguments: -pmf-load -raiseallocs -simplifycfg -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -...
2005 Jan 07
1
[LLVMdev] Shared library building problems on Darwin
...he shared library and makefile system have been overhauled significantly. So I checked again - as updated from CVS, the current makefiles don't build the right object type on darwin. If you follow the advice of 'Writing an LLVM Pass" tutorial, you will create (say) llvm/lib/Transforms/PMFBuild/ and fill it with the appropriate files. Then, running 'make' in llvm/lib/Transforms/PMFBuild generates a bunch of files in llvm/Debug/lib/: % cd llvm/Debug/lib % ll *PMF* -rw-r--r-- 1 mike staff 385584 Jan 6 18:16 PMFBuild.o -rwxr-xr-x 1 mike staff 1053828 Jan...
2007 Sep 04
2
Efficient sampling from a discrete distribution in R
Hello r-help, As far as I've seen, there is no function in R dedicated to sampling from a discrete distribution with a specified mass function. The standard library doesn't come with anything called rdiscrete or rpmf, and I can't find any such thing on the cheat sheet or in the Probability Distributions chapter of _An Introduction to R_. Googling also didn't bring back anything. So, here's my first attempt at a solution. I'm hoping someone here knows of a more efficient way. # Sample from a...
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
On Mon, 20 Mar 2006, Michael McCracken wrote: > Hi, I'm trying to access an analysis pass from the Inliner pass, and > I'm having a lot of trouble getting that to work - I can verify that > my pass is loaded and run (it is a dynamically loaded pass that is > part of an analysisgroup), however, when I access it using > getAnalysis<> from within Inliner::runOnSCC, I am
2002 Nov 19
2
help with winbind!
...ith winbind. i need to use samba/winbind just only to provide autentication with ntlm for squid. programs versions: linux rh 8.0 - squid 2.5S1 - samba 2.2.6 remember: the use of samba/winbind is only to provide autentication for squid with ntlm. MY smb.conf workgroup = CENTROADM password server = PMF security = domain winbind uid = 10000-20000 winbind gid = 10000-20000 winbind use default domain = yes that configuration of smb.conf is in SQUID FAQ. ok. when i join in a domain is everything ok. but when i type wbinfo -t says: could not check secret. what is incorrect? any help me thanks wil...
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
...hat it's a > > function pass which is getting killed before you pass runs. > > -debug-pass=Structure should help figure out if that's the case. > > using -debug-pass=Structure does show me that my pass is loaded and > killed immediately. Here's a sample. "Dummy PMF Interface" is the noop > default implementation of the "PMFAnalysis" analysis group, while "PMF > File Loader" is the real implementation that I'm interested in. > > Pass Arguments: -pmf-load -raiseallocs -simplifycfg -mem2reg > -globalopt -globaldce -ip...
2002 Nov 21
2
winbind is my enemy :) hehehe
Hello. when i type smbpasswd -j centroadm fetch_domain_sid: machine PMF rejected the tconX on the IPC$ share. Error was : NT_STATUS_ACCESS_DENIED. Failed to get domain SID. Unable to join domain CENTROADM. i have 3 nic on linux box an 3 on w2k pdc. what is the problem??? thanks WILSON This is my smb.conf [global] workgroup = centroadm password server = pmf security =...
2005 Jan 11
2
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
...> > > So I checked again - as updated from CVS, the current makefiles don't > > > build the right object type on darwin. > > > > > > If you follow the advice of 'Writing an LLVM Pass" tutorial, you will > > > create (say) llvm/lib/Transforms/PMFBuild/ and fill it with the > > > appropriate files. > > > > > > Then, running 'make' in llvm/lib/Transforms/PMFBuild generates a bunch > > > of files in llvm/Debug/lib/: > > > % cd llvm/Debug/lib > > > % ll *PMF* > > > -rw-r--r-...
2006 Mar 21
2
[LLVMdev] problem loading analysis results from Inliner pass
Hi, I'm trying to access an analysis pass from the Inliner pass, and I'm having a lot of trouble getting that to work - I can verify that my pass is loaded and run (it is a dynamically loaded pass that is part of an analysisgroup), however, when I access it using getAnalysis<> from within Inliner::runOnSCC, I am instead getting the default, dummy version of my analysis, which should
2006 Jun 30
2
Query : Chi Square goodness of fit test
...ipt The R script is as follows ########################## start ######################################### No_of_Frouds<- c(4,1,6,9,9,10,2,4,8,2,3,0,1,2,3,1,3,4,5,4,4,4,9,5,4,3,11,8,12,3,10,0,7) N <- length(No_of_Frouds) # Estimation of Parameter lambda<- sum(No_of_Frouds)/N lambda pmf <- dpois(i, lambda, log = FALSE) step_function <- ppois(i, lambda, lower.tail = TRUE, log.p = FALSE) # Chi-Squared Goodness of Fit Test # Ho: The data follow a Poisson distribution Vs H1: Not Ho Frauds <- c(1:13) counts<- c(2,3,3,5,7,2,1,1,2,3,2,1,1,0) # Observed frequency Ex...
2005 Jul 20
2
Issues with convolve
...e recursion fails. One way to solve this problem is to divide lambda by 2^n, apply the panjer() function and then convolve the result with itself n times. We applied the panjer() function with a lambda such that the mass at 0 is just larger than .Machine$double.xmin. We thus know that once this pmf is convoluted with itself, the first probabilities will be 0 (for the computer). Here are the two issues we have with convolve(): 1. The probabilities we know should be 0 are rather in the vicinity of 1E-19, as if convolve() could not "go lower". Using a hand made convolution function...
2010 Oct 17
2
dpois().......bizarre warning messages
Dear Masters, I have a question to submit consider the following script m<-4.95 obs<-rpois(36,m) # i generate 36 realization from a poisson(m) hist(obs,freq=F) curve(dpois(x,m),add=T,col="red") #i wish to overlay on the histogram the theorical poisson density function errors are returned saing the x vector doesn't contain integers.... really bizarre i can't give
2005 Jan 11
0
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
...checked again - as updated from CVS, the current makefiles don't > > > > build the right object type on darwin. > > > > > > > > If you follow the advice of 'Writing an LLVM Pass" tutorial, you will > > > > create (say) llvm/lib/Transforms/PMFBuild/ and fill it with the > > > > appropriate files. > > > > > > > > Then, running 'make' in llvm/lib/Transforms/PMFBuild generates a bunch > > > > of files in llvm/Debug/lib/: > > > > % cd llvm/Debug/lib > > > > % ll...
2015 Jun 18
4
C7: EPEL conflicts with Base and ElRepo?
...anyone know which packages are conflicting, and why? Here is the relevant yum output, note the excluded packages info: # yum repolist Loaded plugins: fastestmirror, langpacks, priorities Loading mirror speeds from cached hostfile * base: ftp.ines.lug.ro * elrepo: ftp.ines.lug.ro * epel: mirror.pmf.kg.ac.rs * extras: ftp.ines.lug.ro * updates: ftp.ines.lug.ro 70 packages excluded due to repository priority protections repo id repo name status base/7/x86_64 CentOS-7 - Base 8,652 elrepo ELRepo.org Community Enterprise Linux Repository - el...
2008 Jul 02
1
graph woes
...compound database searched", ylab = "% of known ligands found", main = title , col = "#ff0000", pch = "20", xlim = (0.1, 100), ylim = (0, 100), log = "x") axTicks(side = 1, log = True) points(type = "s", y = control_Table, x = p_PMF_Table, col = "#00c000") points(type = "s", y = control_Table, x = p_GOLD_Table, col = "#0080ff") points(type = "s", y = control_Table, x = p_CHEMSCORE_Table, col = "#c000ff") points(type = "s", y = control_Table, x...
2007 Feb 08
1
Zeta and Zipf distribution
...integer values. Do you know a package (similar to MASS) or a function (similar to fitdistr) I can use to estimate the parameter of these distributions using MLE method? Otherwise do you know a function (which use MLE method to estimate distribution parameters) that allow me to specify a PDF or PMF? Thanks, Regards Mauro Rossi -- Mauro Rossi Istituto di Ricerca per la Protezione Idrogeologica Consiglio Nazionale delle Ricerche Via della Madonna Alta, 126 06128 Perugia Italia Tel. +39 075 5014421 Fax +39 075 5014420
2023 Mar 21
1
"doveadm altmove -r" not working ?
...y/homedir/mdbox/storage. > > Is there some known issues with doveadm altmove in this version ? Or am > I missing something ? > > I can share more config details if needed. > > -- > Benoit BRANCIARD > Universit? Paris 1 Panth?on-Sorbonne - DSIUN-SIS > B405 - Centre PMF - 90 rue de Tolbiac - 75013 Paris > Tel. 01 44 07 89 68 > http://dsiun.univ-paris1.fr Can you try doveadm -D altmove -r -u myuser all and post logs? Aki
2015 Jun 18
0
C7: EPEL conflicts with Base and ElRepo?
...nd why? > > Here is the relevant yum output, note the excluded packages info: > > # yum repolist > Loaded plugins: fastestmirror, langpacks, priorities > Loading mirror speeds from cached hostfile > * base: ftp.ines.lug.ro > * elrepo: ftp.ines.lug.ro > * epel: mirror.pmf.kg.ac.rs > * extras: ftp.ines.lug.ro > * updates: ftp.ines.lug.ro > 70 packages excluded due to repository priority protections > repo id repo name > status base/7/x86_64 CentOS-7 - > Base 8,652 elrepo > ELRepo.org Communi...
2004 Oct 17
3
how to draw a multivariate function
Hi, Rusers: Thanks for answering my last questions. I am frustrated in plotting a trinomial pmf function f(x,y | n, pa, pb) = factorial(n)/ (factorial(x) * factorial(y) * factorial (n-x-y))* pa^x * pb^y * ((1-pa-pb)^(n-x-y)) obviously it is a bivariate function of x and y. But I have put a lot of time on this. ********************************** x <- seq(0, n, len = n/2+1) # for now I s...