search for: pli

Displaying 20 results from an estimated 117 matches for "pli".

Did you mean: pci
2013 Feb 01
0
R code parallelized using plyr and doMC: error message: Error in do.ply(i) : task 1 failed - “could not find function ”getClass“”
Dear list, I'm just getting started learning how to use remote supercomputers for execution of parallelized code. I got a lot of initial help from this <http://stackoverflow.com/questions/14553357/parallelizing-on-a-supercomputer-and-then-combining-the-parallel-results-r> previous post, as well as one particularly helpful and patient XSEDE guy. I'm only using one node (for the
2010 Oct 03
1
plyr: a*ply with functions that return matrices-- possible bug in aaply?
I have an application where I have a function to calculate results for a 2-way table or matrix, which returns a matrix with one less row and column. To keep this short, the function below captures the structure: fun2way <- function(f){ if (!length(dim(f)) ==2) stop("only for 2-way arrays")...
2010 Sep 10
0
plyr: version 1.2
plyr is a set of tools for a common set of problems: you need to __split__ up a big data structure into homogeneous pieces, __apply__ a function to each piece and then __combine__ all the results back together. For example, you might want to: * fit the same model each patient subsets of a data frame * quickly calculate summary statistics for each group * perform...
2010 Sep 10
0
plyr: version 1.2
plyr is a set of tools for a common set of problems: you need to __split__ up a big data structure into homogeneous pieces, __apply__ a function to each piece and then __combine__ all the results back together. For example, you might want to: * fit the same model each patient subsets of a data frame * quickly calculate summary statistics for each group * perform...
2007 May 28
2
Rails, respond_to? over anonymous module (extend has_many).
...ets.flatten.each do |asset| item = proxy_owner.playlist_items.build(:asset => asset) item.save unless proxy_owner.new_record? proxy_owner.duration += asset.duration end proxy_owner.save unless proxy_owner.new_record? end def delete_at (position) pli = proxy_owner.playlist_items.find_by_position(position) rescue nil unless pli.nil? duration = pli.asset.duration proxy_owner.playlist_items.delete(pli) proxy_owner.update_attributes( :duration => (proxy_owner.duration - duration) ) end end def order...
2008 Jun 25
1
Re:%20%5Bsyslinux%5D%20PXELinux%20/%20gPXE%20no%20IP%20by%20DHCP&In-Re ply-To=%3C485BE4C7.1090505%40zytor.com%3E
I am pushing the undionly.kpxe to clients, and serving pxelinux.0 from SYSLinux3.70-pre19. The hardware is not very relevant, I am using VMWare Workstation 6 (e1000 adapter). I've tested it on real network cards like Intel, Broadcom and NVidia 1000 mbit , and they all boot successfully. This problem seems like a VMWare - gPXE incompatibility issue. -- Matthew Steggink
1999 Nov 04
1
Problem joining a domain
...e domain. In that case, smbpasswd isn't looking at the netbios name specified in the smb.conf file.... _____________________________________________________________ Email addresses, faxes, and any other means of electronic contact are for the business use of Ply Marts, Inc., its employees, suppliers, and any other party interested in the business of Ply Marts, Inc. Individuals using computer systems owned or operated by Ply Marts, Inc. do so subject to applicable laws and company policies. Ply Marts, Inc. disclaims all responsibility and/or warranties for information and materials residing...
1999 Nov 04
1
Confusion over how to configure WINS
We have a network of about 24 remote site all connecting to our home office across a mixture of private frame relay and VPN across the internet. In order to simplify our life, and at the same time, reduce the amount of non critical and chatty traffic transversing the WAN links during business hours, we are putting servers at each remote to do DHCP, DNS, WINS, and file and print sharing. From the documentation, I'm not sure whether we need to turn WINS se...
2009 Jun 03
0
fitting polynomial, for integration.
Hello, I have a question regarding fitting a polynomial to a data set, then constructing a polynom from the coefficients so that I can integrate it. I first use lm to fit the polynomial setting the coefficients to raw=TRUE - this appears to work fine. I plot the model and it is a true representation of the data. I then take the coefficients vector and construct a polynom from the
2013 Nov 05
2
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
...- Pengcheng On Nov 5, 2013, at 1:57 PM, Eric Christopher <echristo at gmail.com> wrote: > This is from work that Manman did. I thought she'd fixed this particular issue though. Can you file a bug with a test case please? > > On Nov 5, 2013 10:10 AM, "lipengcheng" <pli at cs.rochester.edu> wrote: > Hello LLVM, > > I encountered the following bugs when I compiled my program in debug version. > Could someone help me with that ? Really appreciate that. Thanks, > > Take the mcf program in SPEC2K6 as example. The compiling options are : > &g...
2009 Apr 15
0
plyr version 0.1.7
...ou might want to: * fit the same model to subsets of a data frame * quickly calculate summary statistics for each group * perform group-wise transformations like scaling or standardising * eliminate for-loops in your code It's already possible to do this with built-in functions (like split and the apply functions), but plyr just makes it all a bit easier with: * absolutely consistent names, arguments and outputs * input from and output to data.frames, matrices and lists * progress bars to keep track of long running operations * built-in error recovery, and informative error...
2009 Apr 15
0
plyr version 0.1.7
...ou might want to: * fit the same model to subsets of a data frame * quickly calculate summary statistics for each group * perform group-wise transformations like scaling or standardising * eliminate for-loops in your code It's already possible to do this with built-in functions (like split and the apply functions), but plyr just makes it all a bit easier with: * absolutely consistent names, arguments and outputs * input from and output to data.frames, matrices and lists * progress bars to keep track of long running operations * built-in error recovery, and informative error...
2013 Nov 05
0
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
Hi, What version of clang are you using? I think r174785 is the fix. Manman On Tue, Nov 5, 2013 at 11:04 AM, lipengcheng <pli at cs.rochester.edu> wrote: > What do you mean by test case please ? Using the following commands to > compile mcf program > can reproduce such issue all the time. > > Probably it is my version's problem. Because I checked out 3.3version from > SVN before published. > &...
2013 Nov 05
1
[LLVMdev] Compiling issues: undefined reference to `.Lline_table_start1'
Also r174479. Manman On Tue, Nov 5, 2013 at 11:11 AM, Manman Ren <manman.ren at gmail.com> wrote: > Hi, > > What version of clang are you using? I think r174785 is the fix. > > Manman > > > On Tue, Nov 5, 2013 at 11:04 AM, lipengcheng <pli at cs.rochester.edu> wrote: > >> What do you mean by test case please ? Using the following commands to >> compile mcf program >> can reproduce such issue all the time. >> >> Probably it is my version's problem. Because I checked out 3.3version >> from...
2019 Apr 03
2
SAMBA 48 - Dependencies Python27 vs python36
Hello Everyone, Good morning/afternoon/evening. Is there any chance to have SAMBA 48 working with Python36 and its derivatives? ( py36-dnspython-1.15.0.txz. py36-iso8601-0.1.11.txz, py36-ply-3.11.txz, py36-setuptools-40.6.2.txz) Currently SAMBA 48 requires python 26, but that is conflicting with existing packages in the server that is using py36. Any way to work around that issue?
2012 Oct 10
3
How to replicate SAS by group processing in R
...2012 C 9/16/2012 15 9/12/2012 C 9/16/2012 16 9/12/2012 C 9/16/2012 17 to get the following results: tdate stock_symbol expiration strike 9/11/2012 C 9/16/2012 11 9/12/2012 C 9/16/2012 14 How would I replicate this kind of logic in R? I have seen PLY & data.table packages mentioned but don't see how they would do the job. Thanks ahead for your help -- View this message in context: http://r.789695.n4.nabble.com/How-to-replicate-SAS-by-group-processing-in-R-tp4645753.html Sent from the R he...
2005 Aug 17
2
MMX loop filter for theora-exp
...@@ -2031,7 +2031,7 @@ if(pipe.loop_filter){ sdelay+=notstart; edelay+=notdone; - oc_state_loop_filter_frag_rows(&_dec->state,pipe.bounding_values+256, + oc_state_loop_filter_frag_rows(&_dec->state,pipe.bounding_values, refi,pli,pipe.fragy0[pli]-sdelay,pipe.fragy_end[pli]-edelay); } /*To fill the borders, we have an additional two pixel delay, since a diff -Naur a/lib/internal.h b/lib/internal.h --- a/lib/internal.h 2005-08-17 09:29:57.318872500 +0200 +++ b/lib/internal.h 2005-08-17 10:05:34.076411500 +02...
2007 Sep 17
2
Echocancellation on windows
Hi all, does anybody has ran echocancellation successfully on windows ? I have a problem playing audio there. If you play a wav file no mater how I play it after comparing the captured data with the original file there is always difference in the audio length (for 18 sec of audio there is more than 250 ms of difference). Which of course breaks echocancellation. I've tried playing the audio
2019 May 10
4
Asterisk 13.26.0 webRTC: Asterisk not passing along video
...5:24] CSeq: 4132 INVITE [May 10 10:45:24] Contact: <sip:6ltm4mqe at 192.0.2.7;transport=wss;ob> [May 10 10:45:24] Allow: ACK,CANCEL,INVITE,MESSAGE,BYE,OPTIONS,INFO,NOTIFY,REFER [May 10 10:45:24] Supported: outbound [May 10 10:45:24] User-Agent: SIP.js/0.12.0 [May 10 10:45:24] Content-Type: application/sdp [May 10 10:45:24] Content-Length: 5098 [May 10 10:45:24] [May 10 10:45:24] v=0 [May 10 10:45:24] o=- 6075323372920596423 2 IN IP4 127.0.0.1 [May 10 10:45:24] s=- [May 10 10:45:24] t=0 0 [May 10 10:45:24] a=group:BUNDLE audio video [May 10 10:45:24] a=msid-semantic: WMS I46iog3EpKvlzvX9g0M...
2012 Jul 11
4
[LLVMdev] Introductions to everyone and a call for Python-LLVM enthusiasts
Hi all, First, I just want to say thank you for the excellent LLVM project. I have been playing with LLVM for the first part of this year and have been quite impressed with what I've seen and what is possible. I've been coding for a long time, but haven't had this much fun since I first learned Python. The work you have done has opened the door for a tremendous amount of