search for: ineffici

Displaying 20 results from an estimated 2056 matches for "ineffici".

Did you mean: ineffect
2012 Sep 03
1
Possible page inefficiency in do_matrix in array.c
In do_matrix in src/array.c there is a type switch containing : case LGLSXP : for (i = 0; i < nr; i++) for (j = 0; j < nc; j++) LOGICAL(ans)[i + j * NR] = NA_LOGICAL; That seems page inefficient, iiuc. Think it should be : case LGLSXP : for (j = 0; j < nc; j++) for (i = 0; i < nr; i++) LOGICAL(ans)[i + j * NR] = NA_LOGICAL; or more simply : case LGLSXP : for (i = 0; i < nc*nr; i++) LOGICAL(ans)[i] = NA_LOGICAL; ( with some fine tuning required si...
2012 Mar 16
2
how to speed up the inefficient code
...list(result) p_1<-cbind(p,result_1) ------------------------------------------------------------------------------------------------------- is there any efficient way to shorten the time and make same output? -- View this message in context: http://r.789695.n4.nabble.com/how-to-speed-up-the-inefficient-code-tp4478046p4478046.html Sent from the R help mailing list archive at Nabble.com.
2011 Jun 24
2
[LLVMdev] inefficiencies in ConstantUniqueMap ?
Hi, Consider ConstantUniqueMap::getOrCreate() (in lib/VMCore/ConstantsContext.h): /// getOrCreate - Return the specified constant from the map, creating it if /// necessary. ConstantClass *getOrCreate(const TypeClass *Ty, ValRefType V) { MapKey Lookup(Ty, V); ConstantClass* Result = 0; ... For array (or struct or vector) constants, typically: ValType = vector<Constant*>
2011 Jun 24
0
[LLVMdev] inefficiencies in ConstantUniqueMap ?
...hole vector? It seems like this > should not be necessary, just to look something up in the map. > > Further, if we don't find it in the map, we call Create(), which > constructs *another* copy of MapKey(Ty, V), which will be expensive > all over again. Yes, this is all grossly inefficient. I'm currently working on revamping the LLVM IR type system (see the type-system-rewrite branch): http://llvm.org/viewvc/llvm-project/llvm/branches/type-system-rewrite/ I'm hoping to land it in the next week or two. The remaining pieces todo on the branch are: 1. the IR linker needs t...
2005 Jun 24
1
loops in R - about inefficiency
Hi, Can someone technically explain, why does it take so long with loops in R? Thanks, Vehbi Sinan Tunalioglu
2009 Oct 26
0
[Bug 1665] New: prefix_pton is inefficient
https://bugzilla.mindrot.org/show_bug.cgi?id=1665 Summary: prefix_pton is inefficient Product: py-radix Version: -current Platform: ix86 OS/Version: Linux Status: NEW Severity: enhancement Priority: P2 Component: Default AssignedTo: unassigned-bugs at mindrot.org ReportedBy: weinholt...
2007 Dec 27
0
[ win32utils-Patches-16627 ] Replace inefficient busy wait loop with UDP/IP loopback socket.
...pened at 2007-12-26 21:13 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=413&aid=16627&group_id=85 Category: win32-service Group: Code Cleanup Status: Open Resolution: None Priority: 3 Submitted By: Nobody (None) Assigned to: Nobody (None) Summary: Replace inefficient busy wait loop with UDP/IP loopback socket. Initial Comment: Here are some patches for win32-service which eliminate the messy busy loop that polls the hStopEvent with a zero timeout. Instead of using a Windows event, these patches create a UDP/IP socket bound to the loopback interface which c...
2009 Feb 26
9
Inefficiency of SAS Programming
If anyone wants to see a prime example of how inefficient it is to program in SAS, take a look at the SAS programs provided by the US Agency for Healthcare Research and Quality for risk adjusting and reporting for hospital outcomes at http://www.qualityindicators.ahrq.gov/software.htm . The PSSASP3.SAS program is a prime example. Look at how you...
2018 Jul 11
4
What is the right lowering for misaligned memory access?
...haved back end do with a load or store with alignment less than the natural alignment of the type? I believe C++ considers such access to be UB. I'm not sure what the IR semantics are. I think my options are: - Delete the operation / use undef - Lower as if it is naturally aligned - Lower via inefficient code that assumes align 1 Thanks, Jon -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180711/26bb4c9f/attachment.html>
2003 May 23
1
Inefficient Winbind behavior? Not sure if it posted 1 st time.
...now, and I just did a netstat and the only connections to a DC are to the off-site one, the PDC. Thanks. Sven -----Original Message----- From: Gerald (Jerry) Carter [mailto:jerry@samba.org] Sent: Thursday, May 22, 2003 10:19 PM To: SRuth@LANDAM.com Cc: samba@lists.samba.org Subject: Re: [Samba] Inefficient Winbind behavior? Not sure if it posted 1st time. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed, 14 May 2003 SRuth@LANDAM.com wrote: > Shouldn't winbindd use the local DC? Can I configure it to do so? I'm > fairly convinced that authenticating over the WAN link is caus...
2019 Feb 03
1
Inefficiency in df$col
While doing some performance testing with the new version of pqR (see pqR-project.org), I've encountered an extreme, and quite unnecessary, inefficiency in the current R Core implementation of R, which I think you might want to correct. The inefficiency is in access to columns of a data frame, as in expressions such as df$col[i], which I think are very common (the alternatives of df[i,"col"] and df[["col"]][i] are, I think,...
2011 Mar 01
3
inefficient ifelse() ?
dear R experts--- t <- 1:30 f <- function(t) { cat("f for", t, "\n"); return(2*t) } g <- function(t) { cat("g for", t, "\n"); return(3*t) } s <- ifelse( t%%2==0, g(t), f(t)) shows that the ifelse function actually evaluates both f() and g() for all values first, and presumably then just picks left or right results based on t%%2.
2008 Apr 24
0
[LLVMdev] FoldingSetNodeID operations inefficiency
...d alltogether? But may be I'm wrong... - Roman ----- Ursprüngliche Mail ---- Von: Chris Lattner <sabre at nondot.org> An: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> Gesendet: Donnerstag, den 24. April 2008, 02:07:55 Uhr Betreff: Re: [LLVMdev] FoldingSetNodeID operations inefficiency On Wed, 23 Apr 2008, Roman Levenstein wrote: > Hi, > > While profiling LLVM using my test-cases with huge MBBs, I noticed that > FoldingSetNodeID operations (ComputeHash,insertion,etc) may become > really inefficient for the nodes, which have very many operands. Here is a stupi...
2019 Jun 13
2
[PATCH net-next] vsock: correct removal of socket from the list
The current vsock code for removal of socket from the list is both subject to race and inefficient. It takes the lock, checks whether the socket is in the list, drops the lock and if the socket was on the list, deletes it from the list. This is subject to race because as soon as the lock is dropped once it is checked for presence, that condition cannot be relied upon for any decision. It is a...
2019 Jun 13
2
[PATCH net-next] vsock: correct removal of socket from the list
The current vsock code for removal of socket from the list is both subject to race and inefficient. It takes the lock, checks whether the socket is in the list, drops the lock and if the socket was on the list, deletes it from the list. This is subject to race because as soon as the lock is dropped once it is checked for presence, that condition cannot be relied upon for any decision. It is a...
2010 Feb 11
3
Excessively inefficient source code modifications
...2 secs per call (so that would make roughly 0.00012*channels*frames extra encoding time for an audio file). Despite I've re-re-rechecked my code and I haven't found anything strange, I don't discard at all that may be there are some algorithmic errors left that may make my code be a bit inefficient, but making 2 secs go to 2 mins is quite alarming and far away from permissible. Supposing I have no important algorithmic errors, could this excessive overload be caused by a compiling issue? (that wouldn't surprise me, as my knowledge about autoconf/automake/make scripts is quite basic...)...
2017 Aug 31
0
Windows SMB2 client doing excessive, inefficient SMB2 Find (and other) requests
...r) from SMB1 3.6.15 server share R5) copy to Linux SMB2 client (cp -r, krusader) from SMB2 4.6.5 server share R6) copy to Linux SMB2 client (cp -r, krusader) from Win 10 SMB2 server share and will hopefully be able to produce a brief, but still meaningful summary/description of the differences/inefficiencies seen in client-side SMB2 requests that make SMB2 so much slower than SMB1, especially with Samba (but also with Windows SMB2 server)... So please stay tuned - I'll get back to you soon on samba-technical... ;-) Many thanks & best regards Andreas
2010 Dec 14
2
writing sample values in to a file
Dear all, I am relatively new to R. I would like to know how can we write the realizations (for example generated through rnorm or runif) in to a data file. It would be very inefficient to first generate values and then write them in to file using "write" function. Instead, is there a way to generate 1 value at a time and append them in to the file. The question might be trivial to many experts. I appreciate your help. Thank you -- View this message in context: htt...
2011 Dec 06
1
warning for inefficiently compressed datasets
Hi, Recently added to doc/NEWS.Rd: 'R CMD check' now gives a warning rather than a note if it finds inefficiently compressed datasets. With 'bzip2' and 'xz' compression having been available since R 2.10.0, there is no excuse for not using them. Why isn't a note enough for this? Generally speaking, warnings are for things that are dangerous, or unsafe, or unportable, or for an...
2020 May 02
5
[Bug 1426] New: Inefficient command lookup on errors
https://bugzilla.netfilter.org/show_bug.cgi?id=1426 Bug ID: 1426 Summary: Inefficient command lookup on errors Product: nftables Version: unspecified Hardware: x86_64 OS: All Status: NEW Severity: enhancement Priority: P5 Component: nft Assignee: pablo at netfilter.org Rep...