active questions tagged speed - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T17:10:36Zhttp://stackoverflow.com/feeds/tag/speedhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1932222/c-vector-vs-array-time4C++ Vector vs Array (Time)vsha0412009-12-19T07:02:22Z2009-12-19T16:51:42Z
<p>I have got here two programs with me, both are doing exactly the same task. They are just setting an boolean array / vector to the value true. The program using vector
takes 27 seconds to run whereas the program involving array with 5 times greater size takes less than 1 s. I would like to know the exact reason as to why there is such a major difference ? Are vectors
really that inefficient ?</p>
<p>Program using vectors</p>
<pre><code>#include <iostream>
#include <vector>
#include <ctime>
using namespace std;
int main(){
const int size = 2000;
time_t start, end;
time(&start);
vector<bool> v(size);
for(int i = 0; i < size; i++){
for(int j = 0; j < size; j++){
v[i] = true;
}
}
time(&end);
cout<<difftime(end, start)<<" seconds."<<endl;
}
</code></pre>
<p>Runtime - 27 seconds</p>
<p>Program using Array</p>
<pre><code>#include <iostream>
#include <ctime>
using namespace std;
int main(){
const int size = 10000; // 5 times more size
time_t start, end;
time(&start);
bool v[size];
for(int i = 0; i < size; i++){
for(int j = 0; j < size; j++){
v[i] = true;
}
}
time(&end);
cout<<difftime(end, start)<<" seconds."<<endl;
}
</code></pre>
<p>Runtime - < 1 seconds</p>
<p>Platform - Visual Studio 2008
OS - Windows Vista 32 bit SP 1
Processor Intel(R) Pentium(R) Dual CPU T2370 @ 1.73GHz
Memory (RAM) 1.00 GB</p>
<p>Thanks</p>
<p>Amare</p>
http://stackoverflow.com/questions/1933146/multiple-mysql-queries-and-how-to-make-my-script-go-faster0Multiple MySQL queries and how to make my script go fasterjeezTech2009-12-19T15:11:21Z2009-12-19T15:24:39Z
<p>Hello to all.</p>
<p>Using PHP (1900 secs time limit and more than 1GB memory limit) and MySQL (using PEAR::MDB2) on this one...</p>
<p>I am trying to create a search engine that will load data from site feeds in a mysql database. Some sites have rather big feeds with lots of data in them (for example more than 80.000 records in just one file). Some data checking for each of the records is done prior to inserting the record in the database (data checking that might also insert or update a mysql table). </p>
<p>My problem is as many of you might have already understood...time! For each record in the feed there are more than 20 checks and for a feed with eg: 10.000 records there might be >50.000 inserts to the database.</p>
<p>I tried to do this with 2 ways:</p>
<ol>
<li>Read the feed and store the data in an array and then loop through the array and do the data checking and inserts. (This proves to be the fastest of all)</li>
<li>Read the feed and do the data checking line by line and insert. </li>
</ol>
<p>The database uses indexes on each field that is constantly queried. The PHP code is tweaked with no extra variables and the SQL queries are simple select, update and insert statements. </p>
<p>Setting time limits higher and memory is nor a problem. The problem is that I want this operation to be faster.</p>
<p>So my question is:
How can i make the process of importing the feed's data faster? Are there any other tips that I might not be aware of? </p>
http://stackoverflow.com/questions/1924530/mixing-cout-and-printf-for-faster-output1mixing cout and printf for faster outputJabba2009-12-17T20:55:23Z2009-12-18T19:52:02Z
<p>After performing some tests I noticed that <code>printf</code> is much faster than <code>cout</code>. I know that it's implementation dependent, but on my Linux box <code>printf</code> is 8x faster. So my idea is to mix the two printing methods: I want to use <code>cout</code> for simple prints, and I plan to use <code>printf</code> for producing huge outputs (typically in a loop). I think it's safe to do as long as I don't forget to flush before switching to the other method:</p>
<pre><code>cout << "Hello" << endl;
cout.flush();
for (int i=0; i<1000000; ++i) {
printf("World!\n");
}
fflush(stdout);
cout << "last line" << endl;
cout << flush;
</code></pre>
<p>Is it OK like that?</p>
<p><strong>Update:</strong> Thanks for all the precious feedbacks. Summary of the answers: if you want to avoid tricky solutions, just simply don't use <code>endl</code> with <code>cout</code> since it flushes the buffer implicitly. Use <code>"\n"</code> instead. It can be interesting if you produce <em>large</em> outputs.</p>
http://stackoverflow.com/questions/1928780/very-fast-cache-access-time-indexed-data-in-c0Very fast cache / access time-indexed data in c#Wam2009-12-18T15:13:09Z2009-12-18T15:13:09Z
<p>Hello there,</p>
<p>I'm coding a data intensive app in c#. Currently, the app loads loads and loads of timeseries from a distant sql server, does a lot of calculation to create other timeseries, and I'd like to access to these timeseries fast.</p>
<p>Each timeserie has a unique identifier, and should map from DateTime to anything (mostly floats, but sometime strings, stringarray, etc).</p>
<p>Do you know any library I could use for that, giving me :</p>
<ul>
<li>fast and parallel access to these timeseries ?</li>
<li>access to the "tree" version of these timeseries, to lookup the latest date, last previous date, etc ?</li>
</ul>
<p>I've had a look a massive parallel cache, such as memcached, tokyo-tyrant or redis, but I'd have to store a somehow serialized version of each timeseries to solve my problem.</p>
<p>Cheers !</p>
http://stackoverflow.com/questions/1926563/activerecordsessionstore-vs-sqlsessionstore0activerecord_session_store vs. sql_session_storeLukas2009-12-18T05:55:57Z2009-12-18T05:55:57Z
<p>Does anyone have more recent stats on the speed gains in SqlSessionStore over ActiveRecord Session Store? Is anyone out there using SqlSessionStore because of gains over ARStore? </p>
<p>More of a curiosity I guess. Seems there isn't a lot new on the SqlSessionStore side since like '07, even though the <a href="http://github.com/nateware/sql%5Fsession%5Fstore" rel="nofollow">github.com</a> repos show updates as late as June/July of '09. </p>
<p>I'm using it for a few of my apps just because it was recommended to me and I'm always for faster when I can get it. Sometimes AR seems a bit bloated to me. Looking into DataMapper too...</p>
<p>Any info anyone has would be cool.</p>
http://stackoverflow.com/questions/1925385/speed-up-mysql-query-containing-300k-records2Speed up MySQL query containing 300k+ recordsskerit2009-12-17T23:45:23Z2009-12-18T01:02:01Z
<p>I need to lookup all my products (sku's) their latest stock quantity.<br>
I have one table (called "stock") with 315k+ records containing this information (a new batch of data is added every day, for most sku's). The reference data is in another table (called "stockfile").</p>
<p>This is the query to do it:</p>
<pre><code>SELECT s1 . * , f1 . *
FROM stock s1
JOIN stockfile f1 ON ( s1.stockfileid = f1.stockfileid )
LEFT OUTER JOIN ( stock s2
JOIN stockfile f2 ON ( s2.stockfileid = f2.stockfileid )
) ON ( s1.sku = s2.sku
AND ( f1.date < f2.date
OR f1.date = f2.date
AND f1.stockfileid < f2.stockfileid) )
WHERE s2.sku IS NULL
</code></pre>
<p>These are the table definitions</p>
<p><code>SHOW CREATE TABLE</code> stock:</p>
<pre><code>CREATE TABLE `stock` (
`stockid` bigint(20) NOT NULL AUTO_INCREMENT,
`sku` char(25) NOT NULL,
`quantity` int(5) NOT NULL,
`creationdate` datetime NOT NULL,
`stockfileid` smallint(5) unsigned NOT NULL,
`touchdate` datetime NOT NULL,
PRIMARY KEY (`stockid`),
KEY `stock_sku` (`sku`),
KEY `stock_stockfileid` (`stockfileid`)
) ENGINE=MyISAM AUTO_INCREMENT=316039 DEFAULT CHARSET=latin1
</code></pre>
<p><code>SHOW CREATE TABLE</code> stockfile:</p>
<pre><code>CREATE TABLE `stockfile` (
`stockfileid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`filename` varchar(25) NOT NULL,
`creationdate` datetime DEFAULT NULL,
`touchdate` datetime DEFAULT NULL,
`date` datetime DEFAULT NULL,
`begindate` datetime DEFAULT NULL,
`enddate` datetime DEFAULT NULL,
PRIMARY KEY (`stockfileid`),
KEY `stockfile_date` (`date`)
) ENGINE=MyISAM AUTO_INCREMENT=266 DEFAULT CHARSET=latin1
</code></pre>
<p>Without any extra indexes it takes... forever. I added these and it sped up to about 250 seconds:</p>
<pre><code>CREATE INDEX stock_sku ON stock(sku);
CREATE INDEX stock_stockfileid ON stock(stockfileid);
CREATE INDEX stockfile_date ON stockfile(date);
</code></pre>
<p>This is the <code>EXPLAIN</code> on the original query, with these indexes.</p>
<pre><code>id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s1 ALL stock_stockfileid NULL NULL NULL 316038
1 SIMPLE f1 eq_ref PRIMARY PRIMARY 2 kompare.s1.stockfileid 1
1 SIMPLE s2 ref stock_sku,stock_stockfileid stock_sku 25 kompare.s1.sku 12 Using where
1 SIMPLE f2 eq_ref PRIMARY,stockfile_date PRIMARY 2 kompare.s2.stockfileid 1
</code></pre>
<p>Is there another way to speed things up?</p>
<ul>
<li>Thanks to Bill Karwin for solving the original query!</li>
</ul>
http://stackoverflow.com/questions/1888161/navigating-code-with-keyboard-shortcuts4Navigating code with keyboard shortcutsMarceloRamires2009-12-11T13:44:14Z2009-12-17T16:31:07Z
<p>I'm starting to feel the need to run fastly through code with keyboard shortcuts, to arrive faster where I want to make any changes (avoiding use of mouse or long times holding [up], [left], [right] and [down]).</p>
<p>I'm already using some:</p>
<blockquote>
<p>[home] - first position in current line<br>
[end] - last position in current line<br>
[ctrl] + [home] - first line of the entire code<br>
[ctrl] + [end] - last line of the entire code<br>
[pageup] - same vertical position, one screen above<br>
[pagedown] - same vertical position, one screen below<br>
[ctrl] + [pageup] - first line in current screen<br>
[ctrl] + [end] - last line in current screen<br>
[ctrl] + [left/right] - skipping word per word</p>
</blockquote>
<p>What have you got ?</p>
<p>I use visual studio. (but I'm open to any answer, as I maybe can use others soon)</p>
<p>obs: I've searched through stackoverflow and didn't find a nice question with this content, nor a list of keyboard code searching. If it's repeated, I'm sorry for not finding it, I'm here in my best intentions.</p>
<p>This question is NOT about any shortcuts, and not only about visual studio, it's about running through code with shortcuts.</p>
http://stackoverflow.com/questions/1920999/performance-increase-using-smarty-caching1Performance increase using Smarty + Caching?lukasoppermann2009-12-17T11:04:50Z2009-12-17T14:43:31Z
<p>Hey,</p>
<p>I am going to start using codeigniter, but since it only offers to cache everything or nothing (which would not work, because I have logins, and other areas which cannot be cached) I was wondering whether it is a good idea to use Smarty.</p>
<p>The only concern I have in this question is speed. (No yes/no smarty general question.)</p>
<p><strong>My Question:</strong>
CodeIgniter with some db queries (blog, loading data for pages from the database, etc.)</p>
<p>vs.</p>
<p>CodeIgniter + same db + smarty + partial caching (and of course if smarty->is_cached(.tpl) do not do any db requests)</p>
<p>What is fast, what should I use. Are there any smarty-benchmarks I did not see? Starting at how many db request, would you say, smarty improves performance noticeable considering you have to also load the smarty library?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1035642/asp-net-mvc-vs-webforms-speed-and-architecture-comparison5ASP.NET MVC vs WebForms: speed and architecture comparisonmercury222009-06-23T22:40:26Z2009-12-17T07:14:22Z
<p>I had an argument with one of my friends who is an architect at a pretty large internet company. Basically he was saying that ASP.NET MVC is not for large-scale enterprise applications, that it is not as flexible as WebForms, and that an MVC app will be slower than a web forms app. </p>
<p>From my own experience working with MVC, I can say that it is more flexible and it is lighter weight because there is no page life cycle, viewstate, etc.. It should thus load faster at the very least. As far as I know, MVC is designed for medium to large scale traffic. </p>
<p>What do you guys think? Has anyone compared speed and performance? And is ASP.NET MVC better for large scale apps than ASP.NET WebForms? </p>
<p>In short, between these two choices, which would you choose to use for a large scale enterprise application?</p>
http://stackoverflow.com/questions/1897498/would-the-code-described-in-http-tinyurl-com-yd2ar3q-work-for-itunes-purchased0Would the code described in http://tinyurl.com/yd2ar3q work for itunes' purchased AAC format?hephaestus0422009-12-13T19:42:06Z2009-12-14T04:00:30Z
<p>I'm making an iphone app that needs to adjust audio speed, and in the question <a href="http://stackoverflow.com/questions/1191313/iphone-sound-adjust-speed-of-playback-of-audio-file-while-playing">here</a> , it decompresses audio, so I'm concerned with it working for Itunes' Encoded/Purchased AAC Audio format. Will it work?</p>
http://stackoverflow.com/questions/771092/is-method-a-faster-than-method-b4Is method A faster than method B?paxdiablo2009-04-21T04:54:52Z2009-12-13T21:30:34Z
<p>This is a canonical question, meant only half-way as a joke. Hopefully, you'll find this before posting any question of the form:</p>
<blockquote>
<p>Is something faster than something else?</p>
</blockquote>
<p>Hopefully, the answers below will educate you and prevent you from asking any such questions.</p>
<p>Make sure you answer it, bods. I've posted my own thoughts but I've been wrong before (as my wife will attest to frequently, and at the drop of a hat :-).</p>
http://stackoverflow.com/questions/1854978/can-sifr-js-files-be-combined-into-1-js-file0Can sIFR js files be combined into 1 js file?Logan Stellway2009-12-06T10:17:12Z2009-12-11T22:45:16Z
<p>In the new sifr 3, the author has implemented the ability to combine the css files into 1 file. There are 4 .js files total and I was wondering if there were any ideas how to combine these files for a faster loading time on the client side and also I was wondering if there was any way to just include the sIFR css styles in an already existing css file.</p>
<p>These modifications would greatly decrease the load/waiting time on the end user and I was wondering if there was any thought for that on upcoming builds or if there were any ideas on how to accomplish this idea.</p>
http://stackoverflow.com/questions/1889744/store-javascript-variables-in-array1Store javascript variables in arrayJabes882009-12-11T17:50:53Z2009-12-11T18:25:03Z
<p>I am sure someone has gone over this but I have had no luck finding some results.
I want to know what is the fastest way to maintain a proper variable scope.
Here is some example jquery code I wrote this morning.</p>
<pre><code>var oSignup = {
nTopMargin: null,
oBody: $("div#body"),
oSignup: $("div#newsletter_signup"),
oSignupBtn: $("div#newsletter_signup a.btn-s4")
}
oSignup.nTopMargin = Math.abs(oSignup.oSignup.offset().top);
oSignup.oSignupBtn.toggle(function(){
oSignup.oSignup.css({"top":0});
oSignup.oBody.css({"top":oSignup.nTopMargin});
},function(){
oSignup.oSignup.css({"top":-(oSignup.nTopMargin)});
oSignup.oBody.css({"top":0});
});
</code></pre>
<p>Is this good or bad practice?</p>
http://stackoverflow.com/questions/1879475/speed-of-programming-languages-then-and-now-2Speed of programming languages then and now.WebDevHobo2009-12-10T08:28:49Z2009-12-11T06:53:23Z
<p>Speed is an important part of choosing a programming language.</p>
<p>Apparently, C++ is(for most people) the undoubted ruler when it comes to speed.
Yet when asked with evidence to back this up, nothing can be offered.</p>
<p>Usual excuses include:</p>
<ul>
<li>It's faster than Java<br></li>
<li>There are so many blogs saying it, it must be true.<br></li>
<li>It's the language I've learned and always worked with.</li>
</ul>
<p>I've tried looking up some benchmarks, but the documentation is either hard to figure out, or the data used to make the benchmark is seriously out of date, sometimes even using Java 3. To then claim that Java is slow, compared to more recent releases of other languages, is an unfair comparison.</p>
<p>It's probably also historical, with C++ having ruled the programming world in terms of speed a long time ago.</p>
<p>But what about today. Can anyone offer <strong>very</strong> recent benchmarks, with the latest version on the latest systems?</p>
<p>I mentioned Java, but I'm not specifically trying to give Java a better image or anything. It's just that from my experience, Java is by far the language people like to make fun of, for some reason.</p>
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit4How to organize minification and packaging of css and js files to speed up website?Alexander Yanovets2009-02-03T16:24:14Z2009-12-10T03:25:00Z
<p>I am doing speed optimization for my website application. And I found some practises to do that.
For example <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Best Practices for Speeding Up Your Web Site</a> from Yahoo.
Among them are:</p>
<ul>
<li>Minify JavaScript and CSS.</li>
<li>Minimize number of HTTP Requests by combining several files (css, js) into one.</li>
</ul>
<p>My question is what infrastructure, tools and building process you use or can recommend to perform that?</p>
http://stackoverflow.com/questions/1876083/speeding-up-facebook-connect0Speeding up Facebook ConnectWade Williams2009-12-09T19:02:33Z2009-12-09T19:41:54Z
<p>I'm working on enabling facebook connect with my website, and it seems to work pretty good so far. However, loading the facebook api library on every page of my site is bogging it way down. All the other php classes that I'm using compile in well under 1 second, but I'm seeing serve times ranging from 3 - 20 seconds just to get the facebook api loaded up. Is there anything I can do to speed up facebook connect? Is it just because I'm on a (mt) shared server? </p>
http://stackoverflow.com/questions/1870800/qsqltablemodel-insertrecord-is-very-slow0QSqlTableModel.insertRecord() is very slowGlenn2009-12-09T00:13:18Z2009-12-09T00:13:18Z
<p>Hello,
I am using PyQt to insert records into a MySQL database. the code basically looks like</p>
<pre><code>self.table = QSqlTableModel()
self.table.setTable('mytable')
while True:
rec = self.table.record()
values = getValueDictionary()
for k,v in values.items():
rec.setValue(k,QVariant(v))
self.table.insertRecord(-1,rec)
</code></pre>
<p>The table currently has ~ 50,000 rows in it.
I have timed each line and found that the insertRecord function is taking ~5 seconds to execute, which is unacceptably slow. Everything else is fast. </p>
<p>For comparison, I also made a version of the code that uses </p>
<pre><code>QSqlQuery.prepare("INSERT INTO mytable (f1,f2,...) VALUES (:f1, :f2,...)")
query.bindValue(":f1",blah)
query.exec_()
</code></pre>
<p>In this case, the whole thing takes only ~ 20 milliseconds, so the delay is not in the database connection as far as I can tell.</p>
<p>I'd really prefer to use the QtSql stuff instead of the awkward MySQL commands. Any ideas on how to add a bunch of rows to a MySQL database with QtSql instead of raw comands and with reasonable speed?</p>
<p>Thanks,
G</p>
http://stackoverflow.com/questions/1868874/does-php-run-faster-without-warnings4Does php run faster without warnings?Spuds2009-12-08T18:21:15Z2009-12-08T19:12:06Z
<p>Since PHP code will run just fine even if it's riddled with warnings and notices about undefined indexes and non-static methods being called as static, etc, the question is, if I spend the time to remove ALL notices and warnings from my code will it run significantly faster?</p>
http://stackoverflow.com/questions/727119/log4j-speed-of-resolving-class-method-line-references1Log4J - Speed of resolving class/method/line referencesJeach2009-04-07T18:50:34Z2009-12-06T09:59:59Z
<p>Does log4J still gather the class, method and line numbers by generating exceptions and inspecting the stack trace?</p>
<p>Or has Java been optimized since Sun included their own logging framework.</p>
<p>If not, why has there not been any optimizations made since. What is the main challenges in obtaining class, method and line numbers quickly and efficiently?</p>
<p>Although I hate annotations and try to avoid them, has log4J not made use of this, such as:</p>
<p>@log4j-class MyClass</p>
<p>@log4j-method currentMethodOne</p>
<p>At least this would avoid some companies bad habit of repeatedly writing/copying the method name as the first part of their logging message (which is seriously annoying).</p>
<p>Thanks,</p>
<p>Jeach!</p>
http://stackoverflow.com/questions/1852761/networking-over-the-3g-network-and-ftp-wcf0Networking over the 3G network and Ftp/WCFVault2009-12-05T17:08:58Z2009-12-05T17:08:58Z
<p>I need to upload images to a webserver and each image will have additional information that I'm thinking of encapsulating in an xml file.</p>
<p>I am thinking of using FtpWebRequest and FtpWebResponse.</p>
<p>Bue to bandwidth issues I will probably queue each image (with its associated xml file) and transfer them 1 at a time</p>
<p>To get the best performance is it better that I create a .NET object with the image and additional information and use WCF or is FTP going to be the best to use over the G network?</p>
http://stackoverflow.com/questions/1849956/objective-c-array-iteration-speed1Objective-C Array Iteration SpeedBTN2009-12-04T22:05:00Z2009-12-05T10:05:29Z
<p>I'm working on an application, I have a NSMutableArray that stores 20 or so sprites. I need to iterate through it fairly quickly and efficiently. The speed for my purposes is not optimal... I'm getting two values from each sprite as it iterates through, would it be more efficient (faster) to iterate through an array of say CGPoints then an array of sprites? Or instead of CGPoint make a custom class for the sole purpose of handling just two integer values. Either way, is speed affected by the type of objects or values stored in an array?</p>
http://stackoverflow.com/questions/1291605/user-defined-functions-in-excel-and-speed-issues2User Defined Functions in Excel and Speed IssuesB Rivera2009-08-18T03:15:42Z2009-12-05T09:40:05Z
<p>I have an Excel model that uses almost all UDFs. There are say, 120 columns and over 400 rows. The calculations are done vertically and then horizontally --- that is first all the calculations for column 1 are done, then the final output of column 1 is the input of column 2, etc. In each column I call about six or seven UDFs which call other UDFs. The UDFs often output an array.</p>
<p>The inputs to each of the UDFs are a number of variables, some range variables, some doubles. The range variables are converted to arrays internally before their contents are accessed.</p>
<p>My problem is the following, I can build the Excel model without UDFs and when I run simulations, I can finish all computations in X hours. When I use UDFs, the simulation time is 3X hours or longer. (To answer the obvious question, yes, I need to work with UDFs because if I want to make small changes to the model (like say add another asset type (it is a financial model)) it takes nearly a day of remaking the model without UDFs to fit the new legal/financial structure, with UDFs it takes about 20 minutes to accommodate a different financial structure.)</p>
<p>In any case, I have turned off screen updating, there is no copying and pasting in the functions, the use of Variant types is minimal, all the data is contained in one sheet, i convert all range type variables to arrays before getting the contents.</p>
<p>What else can I do other than getting a faster computer or the equivalent to make the VBA code/Excel file run faster? Please let me know if this needs more clarification.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1846292/timing-a-set-of-methods-the-second-time-they-are-run-they-are-quicker0Timing a set of methods - the second time they are run, they are quicker.Dockers2009-12-04T11:07:56Z2009-12-04T11:31:29Z
<p>I have an algorithm of which I'm using <strong>System.Diagonstics</strong> to time - via the <strong>Stopwatch</strong>.</p>
<p>It works great but one thing I have noticed is that the first time I run the algorithm it takes around 52 milliseconds which is great.</p>
<p>The second time I run the algorithm it takes only a fraction of that time.</p>
<p>Is this due to the nature of <strong>.NET</strong>? </p>
<p>Each time I run the algorithm with a new set of data I re-initalise it. In other words I create a new object rather than re-use the old reference so I'm not sure why this still occurs. Normally I wouldn't care about something like this, but for this assignment I must measure the efficency and speed of my algorithms so it is important for myself to get an understanding to why this is happening.</p>
<p>Pseudo code of how I'm using the timer is below:</p>
<pre><code> Algorithm class
Stopwatch get/set
Method A
Start stopwatch
// Do work.
Stop stopwatch
End
Method B
Start stopwatch
// Do work.
Stop stopwatch
End
End
</code></pre>
<p>After both methods are called in my runner, I get the stopwatch and inspect the time.</p>
<p><strong>The algorithm</strong></p>
<p>The algorithm is tactical waypoint reasoning for computer controlled A.I opponnents. I tried to keep it as simple as possible in the above example.</p>
<p><strong>Results</strong></p>
<pre><code>19.7847
0.0443
0.0102
0.0159
0.0091
0.0073
0.0079
0.0079
0.0079
0.0079
0.0079
0.0079
0.0136
0.0079
0.0073
0.0079
0.0079
0.0079
0.0079
0.0073
...
</code></pre>
<p>Should I just ignore the first time the algorithm is run? Otherwise I'll end up with an average that is essentially the same as the value when its first run.</p>
http://stackoverflow.com/questions/1845990/how-to-get-the-speed-with-android-sdk0How to get the speed with Android SDK?Robin2009-12-04T10:01:01Z2009-12-04T10:01:01Z
<p>as topic , I want got the current Android holder speed, I see the GPS location class provide the property , but not sure whether it is available ...</p>
<p>any help ? thanks.</p>
http://stackoverflow.com/questions/1826346/functions-too-fast-so-they-get-skipped0Functions too fast? So they get skipped?Ben Fransen2009-12-01T13:57:21Z2009-12-04T05:03:52Z
<p>Hi all,</p>
<p>With a function a div-popover gets called and filled with dynamic data using Ajax, PHP, MySQL and some HTML/CSS. All goes fine.</p>
<p>When I want to delete an entry in the list just popped over it functions as it should. When I send an update request for my list it also goes the way I want it. But, when i call <code>delete(); update();</code> right after eachother my first function gets skipped somehow.</p>
<p>When I place <code>alert()'s</code> in both functions I see both functions are getting executed and the scripts walk fine through my ajax function, PHP ajax handler and returns the result back to the user, and with the alerts on all is going well too!</p>
<p>So my question is, are my functions too fast? Or is there something I'm missing here which is causing the non-delete?</p>
<p><strong>Solution</strong> I've moved the <code>update</code> call to the line after the <code>xmlHttp.resonseText</code> in the <code>delete</code> function. In that way the second function call gets executed <em>after</em> the first function is done. Thanks all!</p>
http://stackoverflow.com/questions/1842732/writing-to-gui-issue0writing to GUI issuerashid2009-12-03T20:34:10Z2009-12-03T23:05:11Z
<p>hello,</p>
<p>So i have a setup where two imacs, imac_1 and imac_2, are connected through firewire. imac_1 sends some debugging information to imac_2 and on imac_2 i have a program in c++ that captures debugging information.(see illustration below) </p>
<p>Now the problem is that if i write the debugging info to the GUI (created using QT) directly its very slow, by slow i mean that the GUI takes time to load the data. So what i did was to write the debugging info to a buffer and then dump that buffer into the GUI but that was also slow because the GUI takes time to load the data. </p>
<p>I was thinking of writing the debugging info to a file and then loading that into the gui. So i would load the first 10,000 lines into the gui and then when the user scrolls down i would load next 10,000 lines.</p>
<p>imac_1(transmitter) --->FireWire (medium) --> imac_2 (receiver)</p>
<p>any ideas or suggestions????</p>
<p>i am using:
Mac OS X,
XCode,
imac</p>
http://stackoverflow.com/questions/1839567/calculating-point-of-intersection-based-on-angle-and-speed2Calculating point of intersection based on angle and speedJacks_Depression2009-12-03T12:20:52Z2009-12-03T14:42:29Z
<p>I have a vector consisting of a point, speed and direction. We will call this vector R. And another vector that only consists of a point and a speed. No direction. We will call this one T.
Now, what I am trying to do is to find the shortest intersection point of these two vectors. Since T has no direction, this is proving to be difficult. I was able to create a formula that works in CaRMetal but I can not get it working in python.
Can someone suggest a more efficient way to solve this problem? Or solve my existing formula for X?</p>
<p>Formula:</p>
<p><img src="http://storage.bja888.com/formula.png" alt="Formula"></p>
<p>Key:</p>
<p><img src="http://storage.bja888.com/keys.png" alt="Definitions"></p>
<p>Where o or k is the speed difference between vectors. R.speed / T.speed</p>
http://stackoverflow.com/questions/1832489/printf-slows-down-my-program2printf slows down my programFlavius2009-12-02T12:01:02Z2009-12-03T09:34:42Z
<p>I have a small C program to calculate hashes (for hash tables). The code looks quite clean I hope, but there's something unrelated to it that's bugging me.</p>
<p>I can easily generate about one million hashes in about 0.2-0.3 seconds (benchmarked with /usr/bin/time). However, when I'm printf()inging them in the for loop, the program slows down to about 5 seconds.</p>
<ol>
<li>Why is this?</li>
<li>How to make it faster? mmapp()ing stdout maybe?</li>
<li>How is stdlibc designed in regards to this, and how may it be improved?</li>
<li>How could the kernel support it better? How would it need to be modified to make the throughput on local "files" (sockets,pipes,etc) REALLY fast?</li>
</ol>
<p>I'm looking forward for interesting and detailed replies. Thanks.</p>
<p>PS: this is for a compiler construction toolset, so don't by shy to get into details. While that has nothing to do with the problem itself, I just wanted to point out that details interest me.</p>
<p><strong>Addendum</strong></p>
<p>I'm looking for more programatic approaches for solutions and explanations. Indeed, piping does the job, but I don't have control over what the "user" does.</p>
<p>Of course, I'm doing a testing right now, which wouldn't be done by "normal users". BUT that doesn't change the fact that a simple printf() slows down a process, which is the problem I'm trying to find an optimal programmatic solution for.</p>
<p><hr></p>
<p><strong>Addendum - Astonishing results</strong></p>
<p>The reference time is for plain printf() calls inside a TTY and takes about 4 mins 20 secs.</p>
<p>Testing under a /dev/pts (e.g. Konsole) speeds up the output to about 5 seconds.</p>
<p>It takes about the same amount of time when using setbuffer() in my testing code to a size of 16384, almost the same for 8192: about 6 seconds.</p>
<p>setbuffer() has <strong>apparently</strong> no effect when using it: it takes the same amount of time (on a TTY about 4 mins, on a PTS about 5 seconds).</p>
<p><strong>The astonishing thing is</strong>, if I'm starting the test on TTY1 and then <em>switch to another TTY</em>, it does take just the same as on a PTS: about 5 seconds.</p>
<p><strong>Conclusion</strong>: the kernel does something which has to do with accessibility and user friendliness. HUH!</p>
<p>Normally, it should be equally slow no matter if you stare at the TTY while its active, or you switch over to another TTY.</p>
<p><hr></p>
<p><strong>Lesson</strong>: when running output-intensive programs, switch to another TTY!</p>
http://stackoverflow.com/questions/1833136/artificial-slowdown0artificial slowdownclorz2009-12-02T14:13:14Z2009-12-02T14:26:46Z
<p>Hi everyone,</p>
<p>I've got a flash clip that is known to behave weird if user has slow internet. Now I want to troubleshoot that. Is there a way to slowdown the load speed? Preferably with local apache or may be even with firefox only.</p>
http://stackoverflow.com/questions/1810658/is-speed-control-over-music-on-an-iphone-plausible0Is speed control over music on an iPhone plausible?hephaestus0422009-11-27T21:18:31Z2009-11-27T21:36:58Z
<p>I'm writing an iphone app, and I would like to have the user able to slow or quicken a pre-made sound file. Is this possible? If so, how would you do it?</p>
<p><strong>Edit:</strong></p>
<p>This looks like a dup of the following post:</p>
<p><a href="http://stackoverflow.com/questions/1191313/iphone-sound-adjust-speed-of-playback-of-audio-file-while-playing">http://stackoverflow.com/questions/1191313/iphone-sound-adjust-speed-of-playback-of-audio-file-while-playing</a></p>