search for: prof

Displaying 20 results from an estimated 4566 matches for "prof".

Did you mean: prod
2011 Oct 26
1
problem profiling rspec boot time with ruby-prof
...t;after loading spec files stream #{Time.now}" after options.configure Tue Oct 25 15:34:18 -0700 2011 after loading spec files stream Tue Oct 25 15:46:20 -0700 2011 As you can see, 12 min and 2 seconds were spent in the load_spec_files method. I''m trying to use ruby-prof to characterize the problem, but I keep getting the following error: /Library/Ruby/Gems/1.8/gems/ruby-prof-0.10.8/lib/ruby-prof.rb:62:in `measure_mode='': can''t set measure_mode while profiling (RuntimeError) from /Library/Ruby/Gems/1.8/gems/ruby-prof-0.10.8/lib/ruby-prof.rb: 62:...
2011 May 03
6
Simple loop
Hello everybody, I am beginning with loops and functions and would be glad to have help in the following question: If i have a dataframe like this Site Prof H 1 1 24 1 1 16 1 1 67 1 2 23 1 2 56 1 2 45 2 1 67 2 1 46 And I would like to create a new column that subtracts the minimum of H from H, but for S1 and P1 only the minimum of the data points falling into this category...
2009 Jul 22
4
[LLVMdev] Profiling in LLVM Patch Followup 1
Hi Daniel! Daniel Dunbar wrote: > I merged in my changes to your patch, which results in the attached > patch. There may be some missed merge errors. The main problem I have > with the rest of this patch is that it causes a regression in > llvm-prof's behavior. I tried running edge profiling on the > MultiSource/Applications/aha benchmark in the llvm test-suite, and > llvm-prof no longer prints any function information: > -- > ddunbar at giles:aha$ opt -f Output/aha.linked.rbc -insert-edge-profiling -o foo.bc > ddunbar at gi...
2006 Oct 31
0
6273860 gcc and sgs/gprof don''t get along
Author: mike_s Repository: /hg/zfs-crypto/gate Revision: e144729d8b901f4092085ea17a31bf10d1089f79 Log message: 6273860 gcc and sgs/gprof don''t get along 6273866 gcc and sgs/prof don''t get along Files: update: usr/src/cmd/sgs/gprof/Makefile.com update: usr/src/cmd/sgs/gprof/common/arcs.c update: usr/src/cmd/sgs/gprof/common/dfn.c update: usr/src/cmd/sgs/gprof/common/gprof.c update: usr/src/cmd/sgs/gprof/common...
2011 Mar 21
1
[LLVMdev] Profiling support in LLVM
Dear Najem, You might want to read the llvm-prof documentation if you haven't already: http://llvm.org/cmds/llvm-prof.html. The documentation mentions a script in the utils directory that automates some of the profiling tasks for you. I suspect the way that llvm-prof works is to compile your whole program to a single LLVM bitcode file,...
2011 Apr 25
2
[LLVMdev] Failed to decode profile dump with llvm-prof
Hi, all I'm using profiling mechanism provided by LLVM. What I did is, $ ./${LLVM_SRC}/utils/profile.pl hello.bc But it turned out that llvm-prof failed to interpret the profile dump, llvm-prof gave me the error message below. llvm-prof: Unknown packet type #5! Any idea? Regards, chenwj -- Wei-Ren Chen (陳韋任) C...
2012 Mar 25
2
string substitution for argument in function
...similar but I didnt get it to work. I am comming from python were we woudl do something like: > a = ['one','two','three'] > data = {} > for elem in a: > data[elem] = 2 > data {'three': 2, 'two': 2, 'one': 2} Thanks, Pedro - Prof. Dr. P. Martinez Arbizu DZMB-Forschungsinstitut Senckenberg Suedstrand 44 D-26382 Wilhelmshaven Germany Tel: +49 (0)4421 9475-100 Fax: +49 (0)4421 9475-111 Email: pmartinez at senckenberg.de Senckenberg Gesellschaft f?r Naturforschung Rechtsf?higer Verein gem?? ? 22 BGB Senckenberganlage 25 603...
2011 Mar 21
2
[LLVMdev] Profiling support in LLVM
Hello LLVM developers, I'm assisting my doctor who is doing a research and he wants to use the llvm compiler, my job is to profile build the benchmarks using llvm-prof. What i want to know is the following 1- does llvm support profile feedback optimizations!? 2- when i've used the llvm-prof it's input is an object file (not binary as other compilers) my question is how could I profile a whole benchmark program us...
2003 Sep 05
3
Dotchart question
Sorry to keep asking elementary questions......I appreciate the help. I am trying to create a dotchart with the rows sorted according to the values, rather than the labels. When I try prof <- c('Accountant', 'Administrative assistant', 'Garment worker', 'Cook', 'Dentist', 'General practictioner', 'Graduate student', 'High level manager', 'Low level manager', 'Mechanical engineer', 'Mechanic'...
2011 May 09
4
[LLVMdev] Path profiling command
Hi members, I am a LLVM newbee. I am working in path profiling. I got an error message when reading the path profile data I made a sample source named foo.c The command chain to make llvm path profiling as follows: 1. Compile to LLVM Bitcode llvm-gcc –emit-llvm foo.c –c –o foo.bc 2. Insert Path Instruments opt –insert-path-profiling foo.bc –...
2009 Jul 14
0
[LLVMdev] Profiling in LLVM Patch Followup 1
...mp;revision=75623 and here: http://llvm.org/viewvc/llvm-project?view=rev&revision=75625 I merged in my changes to your patch, which results in the attached patch. There may be some missed merge errors. The main problem I have with the rest of this patch is that it causes a regression in llvm-prof's behavior. I tried running edge profiling on the MultiSource/Applications/aha benchmark in the llvm test-suite, and llvm-prof no longer prints any function information: -- ddunbar at giles:aha$ opt -f Output/aha.linked.rbc -insert-edge-profiling -o foo.bc ddunbar at giles:aha$ llc foo.bc -o -...
2011 Mar 21
0
[LLVMdev] Profiling support in LLVM
Hi Najem, On Mar 21, 2011, at 9:47 AM, NaJeM ErMeLeH wrote: > I'm assisting my doctor who is doing a research and he wants to use the llvm compiler, my job is to profile build the benchmarks using llvm-prof. > > What i want to know is the following > > 1- does llvm support profile feedback optimizations!? Not yet. Please see Bob's proposal: http://article.gmane.org/gmane.comp.compilers.llvm.devel/37107/match=profile > 2- when i've used...
2011 Nov 02
1
[LLVMdev] Failed to decode profile dump with llvm-prof
陳韋任 <chenwj <at> iis.sinica.edu.tw> writes: > > Hi, all > > I'm using profiling mechanism provided by LLVM. > What I did is, > > $ ./${LLVM_SRC}/utils/profile.pl hello.bc > > But it turned out that llvm-prof failed to interpret > the profile dump, llvm-prof gave me the error message > below. > > llvm-prof: Unknown packet type #5! > >...
2015 Jun 15
1
you have been logged on with a temporary profile_win7 client+samba 4+WinServ2012
Hello _Rowland_: I can confirm that the profile path in the "user profile" tab is set to \\jimmy\disk1\profs Please have a look at my "Advanced security settings" for profs (\\jimmy) http://imgur.com/4dAP6zt http://imgur.com/XGJwFpx http://imgur.com/HIR4ZJq In my first email I said that the user was able to view, edit....
2015 Jun 11
6
you have been logged on with a temporary profile_win7 client+samba 4+WinServ2012
Hello Samba I have been trying to fix the problem below for several days with no success and I can't understand why. Please help me if you can. I've got a windows server 2012 running AD and I want to store the user profiles in a Samba filestore server called "Jimmy". Jimmy has the following smb.conf: [global] server string = Samba4 file server workgroup = TESTAD security = ADS realm = TESTAD.BIO.AC.UK domain master = no prefered master = no local master = no os level = 0 br...
2009 Jul 02
1
[LLVMdev] Profiling in LLVM Patch Followup 1
Hi, this is the first in a series of patches to cleanup and improve the LLVM Profiling Infrastructure. First and foremost this patch removes duplicate functionality from ProfileInfoLoader and ProfileInfo: The ProfileInfoLoader performed not only the loading of the profile information but also some synthesis of block and function execution counts from edge profiling information....
2009 Jul 23
0
[LLVMdev] Profiling in LLVM Patch Followup 1
...4:47), Andreas Neustifter wrote: > Daniel Dunbar wrote: >> I merged in my changes to your patch, which results in the attached >> patch. There may be some missed merge errors. The main problem I have >> with the rest of this patch is that it causes a regression in >> llvm-prof's behavior. I tried running edge profiling on the >> MultiSource/Applications/aha benchmark in the llvm test-suite, and >> llvm-prof no longer prints any function information: >> -- >> ddunbar at giles:aha$ opt -f Output/aha.linked.rbc -insert-edge-profiling -o foo.bc &g...
2002 Dec 01
1
generating contrast names
...e) > contrasts(type) <- "contr.Treatment" > > lm(prestige ~ (income + education)*type) # default behaviour Call: lm(formula = prestige ~ (income + education) * type) Coefficients: (Intercept) income education typeprof typewc 2.275753 0.003522 1.713275 15.351896 -33.536652 income:typeprof income:typewc education:typeprof education:typewc -0.002903 -0.002072 1.387809 4.290875 > > options(decor...
2009 Jul 23
1
[LLVMdev] Profiling in LLVM Patch Followup 1
...ifter wrote: >> Daniel Dunbar wrote: >>> I merged in my changes to your patch, which results in the attached >>> patch. There may be some missed merge errors. The main problem I have >>> with the rest of this patch is that it causes a regression in >>> llvm-prof's behavior. I tried running edge profiling on the >>> MultiSource/Applications/aha benchmark in the llvm test-suite, and >>> llvm-prof no longer prints any function information: >>> -- >>> ddunbar at giles:aha$ opt -f Output/aha.linked.rbc -insert-edge-profil...
2008 May 25
11
Aerofly Prof deluxe
Have someone experience with the model-aircraft simulator Aerofly Prof. deluxe? Get someone them running? Thanks for your help joerg -- Super-Acktion nur in der GMX Spieleflat: 10 Tage f?r 1 Euro. ?ber 180 Spiele downloaden und spiele: http://flat.games.gmx.de