search for: inord

Displaying 20 results from an estimated 97 matches for "inord".

Did you mean: fnord
2016 May 15
0
[PATCH] tools/virtio: add inorder option
...nel/lib/alf_queue.c but on most (single-threaded) benchmarks this seems to be slower than the layout without index use. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- tools/virtio/ringtest/virtio_ring_0_9.c | 49 ++++++++++++++++++++++++++++- tools/virtio/ringtest/virtio_ring_inorder.c | 2 ++ tools/virtio/ringtest/Makefile | 4 ++- 3 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 tools/virtio/ringtest/virtio_ring_inorder.c diff --git a/tools/virtio/ringtest/virtio_ring_0_9.c b/tools/virtio/ringtest/virtio_ring_0_9.c index 47c9a1a..7618662...
2016 May 15
0
[PATCH] tools/virtio: add inorder option
...nel/lib/alf_queue.c but on most (single-threaded) benchmarks this seems to be slower than the layout without index use. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- tools/virtio/ringtest/virtio_ring_0_9.c | 49 ++++++++++++++++++++++++++++- tools/virtio/ringtest/virtio_ring_inorder.c | 2 ++ tools/virtio/ringtest/Makefile | 4 ++- 3 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 tools/virtio/ringtest/virtio_ring_inorder.c diff --git a/tools/virtio/ringtest/virtio_ring_0_9.c b/tools/virtio/ringtest/virtio_ring_0_9.c index 47c9a1a..7618662...
2006 Jan 30
3
Rails installation fails!
What do I need to do inorder to install rails? - Thx -ND C:\>gem install rails Attempting local installation of ''rails'' ERROR: Error installing gem rails[.gem]: rails requires rake >= 0.6.2 C:\>gem install rails-1.0.0.gem Attempting local installation of ''rails-1.0.0.gem'' ERROR...
2010 May 18
4
[LLVMdev] DEBUG INFO at the bytecode level
Thanks Edwin. I found DebugInfo.cpp may be useful. Could you tell me which function I should call inorder to know the source file name and the line number for a particular instruction? Cheers, Zheng 2010/5/18 Török Edwin <edwintorok at gmail.com>: > On 05/18/2010 01:26 PM, Zheng Wang wrote: >> Hello, >> >> Could I get some debug info at the byte code level? I am writing a...
2017 Jun 13
2
RFC: Dynamic dominators
...rtual_entry IO{0, 7}, R{nullptr}, P{nullptr} > [1] %entry_n_1 IO{1, 6}, R{virtual_entry}, P{virtual_entry} > [2] %n_2 IO{2, 3}, R{entry_n_1}, P{entry_n_1} > [2] %n_3 IO{4, 5}, R{entry_n_1}, P{entry_n_1} > =============================-------------------------------- > Inorder Dominator Tree: > [1] %entry_n_1 {0,5} > [2] %n_2 {1,2} > [2] %n_3 {3,4} > > It seems the names "inloop" and "next" are not used. > > > Do you think that having a format like that in > > LLVM would make sense? Danny and I though about...
2005 Jan 04
2
Transferring Large Files w/ Rsync - Initial Xfer
...remote location I copied the files to a directory which resides on the rsync server and is being pointed to by the module section rsyncd.conf. The source files have slightly chnaged and I now am trying to sync them. However, it seems that rsync has to copy the entire file itself the first time inorder to build the index (hash) needed in order to have more efficient transfers in the future. How can I get around this? I am pretty sure my problem is the initial transfer of data. Once I have done a complete sync then rsync should in theory only make block level changes based on checksum... ri...
2007 Jul 15
2
Break during the recursion?
Hi, Is it possible to break using if-condition during the recursive function? Here is a function which almost works. It is for inorder-tree-walk. iotw<-function(v,i,Stack,Indexes) # input: a vector and the first index (1), Stack=c(), Indexes=c(). { print(Indexes) # if (sum(i)==0) break # Doesn't work... if (is.na(v[i])==FALSE & is.null(unlist(v[i]))==FALSE) {Stack=c(i,Stack); i=2*i; iotw(v,i,Stack,Indexes)}...
2012 Feb 18
3
foreach %do% and %dopar%
...ript trying to use foreach %dopar% but without success, so I manage to run the code with foreach %do% and looks like this: The code is part of a MCMC model for projects valuation, returning the most important results (VPN, TIR, EVA, etc.) of the simulation. foreach (simx = NsimT, .combine=cbind, .inorder=FALSE, .verbose=TRUE) %do% { MCPVMPA = MCVAMPA[simx] #The *[simx] variables are vectors containing 100,000 simulations of each variable. MCPVMPB = MCVAMPB[simx] #Wich then I want to parse to the script below MCPVMPC = MCVAMPC[simx] #In order for the model to take the values of each variable...
2009 May 08
2
Porting SWFDec to Android
...created. But for Youtube to play it should support flv files, I have seen one of the file in the source "swfdec_flc_decoder.c". Presently it is not used in the project. Do I need to create an object of type swfdec_flc_decoder to support youtube videos or any other changes I need to make inorder to support the youtube videos? Please let me know your thoughts. With Regards Vinay -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freedesktop.org/archives/swfdec/attachments/20090508/3e435f95/attachment.htm
2010 Aug 05
3
[LLVMdev] a problem when using postDominatorTree
On 08/05/2010 06:46 AM, Wenbin Zhang wrote: > Hi all, > I'm using postDominatorTree to do some program analysis. My code works > well for small tests, but when I run it on real applications, the > following error occurs: > /Inorder PostDominator Tree: DFSNumbers invalid: 0 slow queries. > [1] <<exit node>> {0,21} > [2] %bb1 {1,2} > [2] %bb {3,4} > [2] %entry {5,6} > [2] %bb8 {7,20} > [3] %bb7 {8,9} > [3] %bb2 {10,11} > [3] %bb6 {12,13} > [3] %bb5 {14,19} > [4] %bb4 {15,16} > [4]...
2014 Feb 14
2
[LLVMdev] DominatorTree not updated properly after calling the llvm::SplitBlock.
...could not figure out what I did wrong, b/c it seems all the analysis updating should be handled by llvm::SplitBlock. Any suggestions on how to approach this situation? Thanks a bunch in advance. ------------------------- The actual dump of my dominator tree after SplitBlock -------------------- Inorder Dominator Tree: DFSNumbers invalid: 1 slow queries. [1] %entry.barrier {0,27} [2] %entry {1,26} [3] %for.cond {2,25} [4] %for.body {3,6} [5] %for.inc {4,5} [4] %for.end {7,24} *[5] %for.end.split {4294967295,4294967295}* [6] %if.then {8,...
2012 Apr 12
2
[LLVMdev] Question::ARM simulation and cross compilation.
Hello, I'm trying to evaluate the performance improvement of instruction scheduling on one of the inorder ARM processor, I was looking for ARM simulator and I found two (Simplescalar/ARM and SimIt-ARM) The code generated using llvm-2.9 and llvm-gcc and gcc 3.2. I used these command : $ llvm-gcc -O3 -o test1.bc -c --emit-llvm test1.c $ llc -O3 -o test1.s -march=arm test1.bc -mcpu=strongarm110 $ arm-l...
2010 May 18
0
[LLVMdev] DEBUG INFO at the bytecode level
2010/5/18 Zheng Wang <jason.wangz at gmail.com>: > > I found DebugInfo.cpp may be useful. Could you tell me which function > I should call inorder to know the source file name and the line number > for a particular instruction? > See http://llvm.org/docs/SourceLevelDebugging.html#ccxx_frontend At the end of "C/C++ source file information" section, there is a small code snippet this describes how to extract this information...
2010 May 25
1
[LLVMdev] DEBUG INFO at the bytecode level
Devang Patel <devang.patel <at> gmail.com> writes: > > 2010/5/18 Zheng Wang <jason.wangz <at> gmail.com>: > > > > I found DebugInfo.cpp may be useful. Could you tell me which function > > I should call inorder to know the source file name and the line number > > for a particular instruction? > > > > See http://llvm.org/docs/SourceLevelDebugging.html#ccxx_frontend > At the end of "C/C++ source file information" section, there is a > small code snippet this describes h...
2016 May 24
0
[PULL] vhost: cleanups and fixes
...t.git tags/for_linus for you to fetch changes up to bb991288728e6a47a6f0fac6a4e9dfaeecc27956: ringtest: pass buf != NULL (2016-05-22 19:44:14 +0300) ---------------------------------------------------------------- virtio: patches for 4.7 Looks like a quiet cycle for virtio. There's a new inorder option for the ringtest tool, and a bugfix for balloon for ppc platforms when using virtio 1 mode. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> ---------------------------------------------------------------- Michael S. Tsirkin (3): virtio: add inorder option virtio_b...
2016 May 24
0
[PULL] vhost: cleanups and fixes
...t.git tags/for_linus for you to fetch changes up to bb991288728e6a47a6f0fac6a4e9dfaeecc27956: ringtest: pass buf != NULL (2016-05-22 19:44:14 +0300) ---------------------------------------------------------------- virtio: patches for 4.7 Looks like a quiet cycle for virtio. There's a new inorder option for the ringtest tool, and a bugfix for balloon for ppc platforms when using virtio 1 mode. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> ---------------------------------------------------------------- Michael S. Tsirkin (3): virtio: add inorder option virtio_b...
2003 Sep 08
1
cisco 7960 G with *
hi! I'm looking for a robust hardware IP phone which supports SIP protocol inorder to implement a call centre. Have anyone used CISCO SIP phones (eg:- 7960G ) with asterisk. From what I know these CISCO IP phones are very robust and feature rich. Yet I'm nervous whether * don't like CISCO at all. Thoughts are most welcome. denzel. -------------- next part ----------...
2011 Nov 29
1
regarding installation of bayesQR package
....14 version.and i have downloaded bayesQR package from following link http:// http://cran.r-project.org/web/packages/bayesQR/index.ht ml my OS is Windows7.i have downloaded Windows binary: bayesQR_1.3.zip file from above link.I am new to R. So please tell me what is the next step i have to do inorder to install the bayesQR package.pls reply me as quickly as possible. thanks in advance with regards *Kalam Narendar Reddy,* Masters In technology, University Of HYderabad, -- View this message in context: http://r.789695.n4.nabble.com/regarding-installation-of-bayesQR-package-tp4118899p41...
2001 Nov 22
1
Samba Client/join Domain
i have add a samba client to join a Domain. i would i remove him so i can rejoin him on the domain. What do i need to do to the SambaPDC inorder to accomplish this. Thanks.
2002 Sep 19
1
samba and windows 2000 server
...urrenly i'm running samba on a RedHat 7.3 system. The primary domain contreller in the network in a windows 2000 server machine. I'm using the windows 2000 server to authenticate my users in the domain. Each time a new user is created in windows 2000, i have to create the same user in linux inorder to allow the user to have access to the samba shares. Is the re a script or method that can automatically create users in linux as new users being created in windows 2000 ? Thanks