Tagged Questions
-1
votes
0answers
29 views
Is there a list of JavaScript operations by performance? [closed]
It would be really enlightening to see a list of benchmarks comparing how expensive are certain operations such as function calling, creating an array, creating an object, summing 2 numbers and so on. ...
0
votes
2answers
35 views
PC performance and stability issue in multithreaded simple benchmark. How to make each thread run on separate core? [closed]
Look at my code in this post:
How to write simple speed test app with CUDA?
This time I'm not about the CUDA, but the code of application that is in the post. The issue I want to face is that the ...
-2
votes
0answers
98 views
Javascript or Go? [closed]
According to this:
http://benchmarksgame.alioth.debian.org/u32/benchmark.php?test=all&lang=v8&lang2=go&data=u32
Javascript is faster than Go on 8 out of 10 of the benchmarks. Does this ...
1
vote
2answers
30 views
Can 32-bit SPARC V8 application run on 64-bit SPARC V9?
I have few benchmark application complied for SPARC V8 32-bit architecture. I used them for performance evaluation of SPARC 32-bit processor. However, few application fall short of in performance. I ...
-1
votes
1answer
31 views
What is the best buffer management drop policy?
I am working on project that contains a fixed-size buffer of type (FIFO): First input First Output, where clients send their requests to that buffer, and the system handles them.When the buffer is ...
0
votes
1answer
36 views
Measure how many times iOS can draw per frame
I am trying to benchmark how many times iOS natively can draw between frame refresh compared to HTML5/JavaScript.
Using this JavaScript I get a number for how may times the browser can draw during ...
43
votes
7answers
3k views
Ackermann very inefficient with Haskell/GHC
I try computing Ackermann(4,1) and there's a big difference in performance between different languages/compilers. Below are results on my Core i7 3820QM, 16G, Ubuntu 12.10 64bit,
C: 1.6s, gcc -O3 ...
0
votes
0answers
61 views
CouchDB Benchmarks [closed]
I'm an enthusiast user of couchdb and now I'm trying to set up system made up a federated system for the exchange of scientific data by means of a couchdb cluster.
I started studying a bit ...
2
votes
3answers
64 views
Can I reduce the MySQL speed to highlight which query is causing the slowness?
I'm working on an API written in NodeJS and connecting to a MySQL 5.5 database. On our live system, we have one query that's running at over 7 seconds. We've traced this down to a couple of tables ...
16
votes
2answers
476 views
Guava ImmutableMap noticably slower access than HashMap
While working on a memory benchmark of some high-throughput data structures, I realized I could use an ImmutableMap with only a little refactoring. Thinking this would be an improvement, I threw it ...
4
votes
3answers
288 views
Fastest way of converting integer to string in java
Everytime I had to convert an intinto a String I picked either ""+aor Integer.toString(a). Now I wondered which way is faster, so I wrote a simple benchmark that calls function_1, function_2 and ...
2
votes
2answers
72 views
Why does my attempt at measuring render time with Web Performance API keep resulting in negative values
I'm building a web-based page render benchmark app which uses the Web Performance API. What it does is basically measuring how much time the browser takes when ordered to render a bunch of div ...
0
votes
1answer
77 views
JavaScript: what is the relationship between processor speed and code speed?
I would hope that the faster my processor is, the faster my code would run.
I can measure code to the millisecond precision using.
new Date.getTime()
What is the correlation between the two?
...
0
votes
1answer
107 views
Python Requests vs PyCurl Performance
How does the Requests library compare with the PyCurl performance wise?
My understanding is that Requests is a python wrapper for urllib whereas PyCurl is a python wrapper for libcurl which is ...
9
votes
2answers
209 views
Python Numpy Data Types Performance
So I did some testing and got odd results.
Code:
import numpy as np
import timeit
setup = """
import numpy as np
A = np.ones((1000,1000,3), dtype=datatype)
"""
datatypes = "np.uint8", ...
5
votes
2answers
163 views
Is it REALLY true that Python code runs faster in a function?
I saw a comment that lead me to the question Why does Python code run faster in a function?.
I got to thinking, and figured I would try it myself using the timeit library, however I got very ...
0
votes
0answers
33 views
How to produce accurate results for benchmarking a Javascript function
I have this function that I'm using for benchmarking:
function benchMarkTest(func, loop) {
if (arguments.length == 1) {
loop = 1;
}
var start = Date.now();
for (var i = 0; ...
1
vote
2answers
65 views
Ruby Enumerator performance issue
based on my previous related question, I've discovered huge performance gap when using Enumerator class to generate infinite sequences.
Before I did believed the hitch is with Enumerable methods take ...
3
votes
2answers
78 views
How do I perform benchmark comparisons on a series of functions in Rebol?
I recently enquired about the fastest/most efficient way to count newlines in Rebol—I now need to ascertain which approach is best in a given situation.
Some example scenarios: Short Text, Fewer ...
0
votes
1answer
43 views
Does benchmark in java good for compared modular arithmatic operations ?
Can I rely on the results of the benchmark in java to compare the calculations such as modular arithmetic to compare between two operation for example
A = B x C MOD N
D = E^-1 MOD N
Q1)
I want ...
0
votes
1answer
26 views
What is a way I can measure a performance difference before and after implementing state_machine gem?
I'm almost finished implementing pluginaweek's state_machine gem and I'd like to try and measure something before I implement it so I can remeasure afterwards and see a difference. Right now there's a ...
-3
votes
2answers
479 views
GWT Java benchmarks, running the same code in JavaSE vs GWT+browsers [closed]
I have posted GWT (Google Web Toolkit) java benchmarks results here http://thegoodcodeinn.blogspot.it/2013/02/gwt-benchmarks-gwtjsvm-vs-javavm.html .
These benchmarks are about executing the same Java ...
0
votes
3answers
343 views
Fast MD5 Library is not faster than Java 7 MD5?
So I was looking for a faster way to calculate MD5 checksums and ran across the Fast MD5 library - but when I benchmark it with Java 7 on my machine it comes out slower than the Java version.
Either ...
-5
votes
1answer
179 views
Which has better performance? A std::array or C array? [closed]
I have always thought that c arrays would be faster than std::array in C++ but I have done some benchmarking based off the accessing speeds and it appears that the std::array is faster. Why is that?
2
votes
1answer
89 views
Any benchmarks for parser generators?
Has anyone seen a good comparison of parser generators' performance?
I'm particularly interested in:
1) recursive ascent parser generators for LALR(1) grammars;
2) parser generators which produce ...
-2
votes
3answers
46 views
what are the java tools for bench-marking and tuning [closed]
What are commonly used enterprise java tools -open source or otherwise for bench-marking and tuning java applications.
-2
votes
4answers
210 views
Select * from table vs Select col1,col2,col3 from table [duplicate]
Possible Duplicate:
select * vs select column
I was just having a discussion with one of my colleague on the SQL Server performance on specifying the query command in the stored procedure.
...
-1
votes
3answers
65 views
Why those Javascript snippets perform the same?
obj = [1,2,3,4,5];
function iter(){
for (var key in obj){
key=key+key;
};
};
function test1() {
iter(obj);
};
function test2(){
(function iter(obj){
for (var key in ...
1
vote
0answers
77 views
Apache Tika benchmarks
I'm currently developing a Java based web crawler that handles only html files.
What I would like to know is if there any benchmarks out there that show the performance
of the Apache Tika library on ...
0
votes
2answers
123 views
does a primary key speed up an index?
Aside from the convenient auto-increment and UNIQUE features, does the PK actually speed up the index?
Will the speed be the same whether it's a non-PKed indexed INT or PKed (same column, two ...
-3
votes
1answer
110 views
time consumed SELECTing 1 row (WHEREd PK id only) vs more complex SELECTs [closed]
Does anyone have any benchmarking standards for how long it takes to SELECT one row by the PK ai INT id? I assume it increases with table size, but the one link I could find dubiously said no.
I've ...
0
votes
0answers
31 views
Effects of Thread Count on Disk Throughput
I want to test that how much disk throughput is affected from increasing I/O bounded thread count.
Do you know any tools / techniques to measure effect of thread count on disk throughput ?
2
votes
0answers
185 views
Database performance using mysqlslap vs actual sql queries
We are benchmarking a number of servers with a view to migrating our current site.
We have tested 2 configs against the current setup, using a mysqlslap test and by running sql queries on table with ...
1
vote
1answer
144 views
JavaFX application boot time performance
I am creating my first JavaFX application, here is a bogged down version:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import ...
1
vote
3answers
79 views
Benchmarking : get algorithm user time
I'm trying to test the performance of an algorithm I wrote in C++. I use my university calculation cluster (via SGE)
The problem is that I don't know when the server is full or not with other ...
1
vote
3answers
99 views
How to analyze the length of time a specific function runs in R
I just got a gig to help speed up a program in R by improving the efficiency of the algorithms used to calculate data. There are many loops that do different calculations, and I'm wondering which ...
5
votes
2answers
182 views
Algorithm performance
I am testing an algorithm for different parameters on a computer.
I notice the performance fluctuates for each parameters.
Say I run for the first time I got 20 ms, second times I got 5ms, third ...
3
votes
3answers
594 views
SQL Benchmarks: PHP ActiveRecord ORM vs. MySQL vs. CodeIgniter Active Record vs. Standard PHP
Tests updated to be more readable; all done within a 100x foreach loop.
The test query is SELECT * FROM school_courses;
Can anyone provide "outside-the-box-thinking" feedback as to:
a) Why PHP ...
-2
votes
1answer
216 views
possible ways to increase performance in ZF2 applications? [closed]
i read a lot benchmark weblog posts about ZF2 that says zf2 has a low performance for response time because of huge functions load and class loads ...
so i need a list of possible ways to increase ...
4
votes
5answers
199 views
PHP vs MySQL Performance ( if , functions ) in query
I just see this artice
i need to know what's is best berformance in this cases
if statment in query
SELECT *,if( status = 1 , "active" ,"unactive") as status_val FROM comments
VS
<?php
$x ...
1
vote
1answer
99 views
Whetstone CPU performance algorithm
I'm going to develop an application for android that uses the whetstone algorithm to measure CPU performance. I've chosen the Whetstone algorithm because my research tells me it's an appropriate way ...
8
votes
4answers
665 views
Why is `std::copy` 5x (!) slower than `memcpy` in my test program?
This is a follow-up to this question where I posted this program:
#include <algorithm>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <ctime>
#include ...
0
votes
1answer
311 views
Speed of Python on Linux vs Mac [closed]
Out of curiosity: If I run a program on MacOS 10.8 (Python 2.7.2) it takes 21 seconds to finish. The same code running under a virtual Linux machine on the same computer takes 13 seconds (Python ...
3
votes
1answer
137 views
JavaScript - string versus integer key
I was running performance benchmarks for jQuery (don't ask) and discovered something interesting. For some reason it seems that this[0] = element is quite slow compared to this.foo = element. Here is ...
0
votes
1answer
89 views
Get logarithmic benchmark runtime from Caliper
I've recently discovered the Caliper benchmark framework for Java which seems like a very useful tool for microbenchmarks. I'm using it to run microbenchmarks for my vector maths library (vectorz)
...
1
vote
0answers
196 views
Benchmarking Elasticache with memslap
I am benchmarking Elasticache m2.4xlarge instance running in Amazon AWS cloud using memslap.
memslap is run from a m2.4xlarge Amazon EC2 linux instance. Memslap successfully works with concurrency ...
2
votes
2answers
91 views
Website Benchmarking using ab
I am trying my hand at various benchmarking tools for the website I am working on and have found Apache Bench (ab) to be an excellent tool for load testing. It is a command line tool and is very easy ...
0
votes
1answer
392 views
Apache benchmark multipart/form-data
i'm facing a strange problem with apache benchmark post file.
I need to stress a feature that handles file upload. So, I googled about, and found a post describing how to build a post file properly. ...
2
votes
1answer
291 views
NHibernate LINQ query performance, which code fragment is better?
This question is asking which of the two approaches below is more encouraged (and with what reasons)?
I am working with FluentNHibernate in a ServiceStack REST application using C# 4.0, but this ...
0
votes
1answer
171 views
2D array in Java
Which of the following is faster in Java? Is there any other way that is faster than any of these?
int[][] matrix = new int[50][50];
for (int k=0;k<10;k++){
// some calculations here before ...


