1
vote
0answers
14 views

Why do speed tests of functions not add when nested? (Python)

I am trying to optimize some code, so I thought I would look into exactly where my bottlenecks were. I have four functions that wrap eachother like: return f1(f2(f3(f4()))) So I tested each ...
3
votes
1answer
51 views

Python (2.7): Why is there a performance difference between the following 2 code snippets that implement the intersection of two dictionaries

The following 2 code snippets (A & B) both return the intersection of 2 dictionaries. Both of following 2 code snippets should run in O(n) and output the same results. However code snippet B ...
0
votes
1answer
25 views

how to speed up the pattern search btw two lists : python

I have two fastq files like the one given below. Each record in the file starts with '@'. For two such files, my aim is to extract records that are common btw two files. @IRIS:7:1:17:394#0/1 ...
27
votes
3answers
722 views

Most efficient way of making an if-elif-elif-else statement when the else is done the most?

I've got a in if-elif-elif-else statement in which 99% of the time, the else statement is executed: if something == 'this': doThis() elif something == 'that': doThat() elif something == ...
0
votes
1answer
40 views

python: improve performance and/or method to avoid memory error creating, saving and deleting variable variables

I have been fighting against a function giving me a memory error and thanks to your support (Python: how to split and return a list from a function to avoid memory error) I managed to sort the issue; ...
25
votes
1answer
385 views

Why is numpy.any so slow over large arrays?

I'm looking for the most efficient way to determine whether a large array contains at least one nonzero value. At first glance np.any seems like the obvious tool for the job, but it seems unexpectedly ...
4
votes
1answer
65 views

python program very slow

This program generates letter combinations and checks to see if they are words, but the program is extremely slow generating only a few words a second. please tell me why it is very slow, and what i ...
0
votes
1answer
20 views

Systrace error - No such file or directory

I added adb to the path but the error persists. I am trying to use systrace on a linux machine. Kindly help me out Traceback (most recent call last): File "systrace.py", line 280, in <module> ...
3
votes
1answer
109 views

Efficient python way for recursive equations

I am trying to optimize a Loop that I have in a piece of my code. I thought that writing it in a more numpy way would make it faster, but is slower now! the equations takes as input a numpy.array vec ...
0
votes
1answer
40 views

Make python use more resources in calculations

Hi I'm trying to do some matrix calculations using python. The problem is there seems to be a limit of how much CPU will the process consume (about 13% of my Core i7). Is there a way I can make it ...
0
votes
1answer
28 views

Connections with timeout: better to set sockets to non-blocking and loop through them or use select() and maintain a priority queue?

I'm designing a Python SSL server that needs to be able to handle up to a few thousand connections per minute. If a client doesn't send any data in a given period of time, the server should close ...
0
votes
1answer
23 views

Faster way to calculate the number of shortest paths a vertex belongs to using Networkx

I am considering that the Stress of a vertex i is the number of shortest paths between all pairs of vertices that i belongs to. I am trying to calculate it using Networkx, I've made in three ways so ...
7
votes
3answers
136 views

Any real examples to show python's inefficiency? [closed]

It is always said that Python is not so efficient as other languages such as C/C++, Java etc. And it is also recommended to write the bottleneck part in C. But I've never run into such problems, maybe ...
0
votes
1answer
35 views

remote server performance when scraping

I have used the following problem in other questions, but this time my question regards server performance. And so, I decided to ask a new question. I try to run the spider below. It only has to go ...
0
votes
1answer
16 views

wxPython Rendering issues, very slow and crashes, not sure why

I have been creating a simple tile based game to help me learn python and wx python. For starters I wanted to create my own 'world' and to test the simple map generator I made, I bound the return key ...
1
vote
3answers
36 views

Django lte/gte query on a list

I have the following type of data: The data is segmented into "frames" and each frame has a start and stop "gpstime". Within each frame are a bunch of points with a "gpstime" value. There is a ...
1
vote
2answers
31 views

Python - Change Desktop Background Fast

I was wondering if there was any way to - in Python - change the desktop background of a Windows 7 machine quickly. Right now I'm using: ctypes.windll.user32.SystemParametersInfoA(20, 0, ...
0
votes
2answers
62 views

What is the fastest way to merge two lists in python? [duplicate]

Given, list_1 = [1,2,3,4] list_2 = [5,6,7,8] What is the fastest way to achieve the following in python? list = [1,2,3,4,5,6,7,8] Please note that, there can be many ways to merge two lists in ...
3
votes
2answers
72 views

Speed up web scraber

I am scraping 23770 webpages with a pretty simple web scraper using scrapy. I am quite new to scrapy and even python, but managed to write a spider that does the job. It is, however, really slow (it ...
1
vote
2answers
109 views

What are other options for faster io in Python 2.7

I have been struggling with this practice problem on codechef.com for some time. I was finally able to make a working solution. import sys def p(): numbers, div = ...
4
votes
1answer
96 views
+50

Fast python GIS library that supports Great Cycle Distance and polygon

I was looking for a geographical library for python. I need to be able to do the following: Get the distance between 2 points (in meters) using Great-circle distance (not liner distance calculation) ...
0
votes
1answer
30 views

Repeatedly Accessing LARGE fasta files. Most mem efficifent method?

I'm using Biopython to open a large single entry fasta file (514 mega bases) so I can pull out the DNA sequence from specific coordinates. It's reasonably slow to return the sequence and I'm just ...
-2
votes
0answers
58 views

Merge List list of lists if a reverse complement is a sub list of another

Suppose that I have a list of lists. what is the fastest way to compare if part of the reverse complement(reverse and each number * -1) is a sub list of another list of lists within the same list. If ...
3
votes
2answers
115 views

How can I make this search faster in python?

I'm searching for a value from one file in the lines of another. The exact value will only occur once in the search file. How can I make this process faster? Here is my current code: filltaxlist = ...
-4
votes
2answers
80 views

How can I check my internet speed on python? [closed]

I'm trying to find out a way of finding out your internet connection download speed like on speedtest.net with Python.
-3
votes
2answers
150 views

C++ Slower than Python? How is this possible? [closed]

I compiled one of my first programs in C++. Then I ran it along side the identical program in Python (haven't figured out if statements in C++ yet). The Python program was double the speed. I was ...
1
vote
0answers
51 views

Convert string timestamp to comparable time in python

Hi I'm trying to convert a string timestamp with this format ( 2/22/13 3:47:18:509 EST) to a comparable time object. The problem is that I have a huge list (+50000 items) of timestamps (In ascending ...
0
votes
1answer
68 views

Tricks to improve performance of python backend

I am using python programs to nearly everything: deploy scripts nagios routines website backend (web2py) The reason why I am doing this is because I can reuse the code to provide different kind of ...
1
vote
3answers
50 views

Given a set of locations and a single location, find the closest location from the set to the single

Given a set of locations and a single location, find the location from the set which is closest to the single location. It is not about finding a path trough nodes; it's about distance in a birds eye ...
0
votes
4answers
69 views

How to extract nth key in a python dictionary?

Given a python dictionary and an integer n, i need to access the nth key in python's built in dictionary. I need to do this repeatedly many times in my project. I have written a function which does ...
0
votes
0answers
16 views

How to shorten python plot time when there are many data points?

I'm drawing a plot with python. Code is below. When there are only a few hundreds of data points, the code executes well and returns fairly quick; but when there are 200k data points, it need a few ...
-1
votes
1answer
55 views

Query optimisation, finding smallest number of tables to satisfy columns? [closed]

Given a query referencing only columns, find the smallest number of tables to SELECT upon to give an accurate answer; assuming there are mechanisms in place (e.g.: ACID) which keep all data ...
2
votes
2answers
98 views

Object oriented vs vector based programming [closed]

I am torn between object oriented and vector based design. I love the abilities, structure and safety that objects give to the whole architecture. But at the same time, speed is very important to me, ...
2
votes
4answers
216 views

Why does trivial loop in python run so much slower than the same in C++? And how to optimize that? [duplicate]

simply run a near empty for loop in python and in C++ (as following), the speed are very different, the python is more than a hundred times slower. a = 0 for i in xrange(large_const): a += 1 int ...
0
votes
3answers
58 views

Checking if record exists in MongoDB

I'm building a MongoDB database and the problem is that I want to avoid duplicate entries. At the moment I'm doing this (inserting document only after checking if entry doesn't exist): from pymongo ...
1
vote
2answers
47 views

How can I speed up this really basic python script for offsetting lines of numbers

I have a simple text file which contains numbers in ASCII text separated by spaces as per this example. 150604849 319865.301865 5810822.964432 -96.425797 -1610 319734.172256 5810916.074753 ...
0
votes
1answer
115 views

Efficient Python programming for 4-core PC with threading?

I'm looking to write a script to explore the parameter space in some simulation software. Initially, I just want to run the simulation script, say, 100 times, each time incrementing one parameter. ...
1
vote
1answer
64 views

python performance- function vs generator functions

I want to know which one is better in performance terms: a "regular" python function with state, or a generator. Unlike similar questions, I'm using the most simplified function to isolate the ...
1
vote
0answers
52 views

Is there an up-to-date fast YAML parser with python bindings?

What's the latest and greatest for fast YAML parsing in Python? Syck is out of date and recommends using PyYaml, yet PyYaml is pretty slow, and suffers from the GIL problem: >>> def xit(f, ...
-3
votes
1answer
57 views

python modify string insert into dict

I open a .txt file and readlines .txt contents = html_log:Bob -1.2 -0.25 4:53 1 0:02 2 1 3 html_log:John 26.6 0.74 36:00 -4 3 25 26 1:57 74 12 16 -1.11 html_log:Bob -1.2 -0.25 4:53 1 0:04 2 1 3 ...
0
votes
3answers
71 views

Python - Most effective way to implement two's complement?

Two's complement is when you inverse bits then add a binary 1 digit. So for example... 0011001 apply two's complement 1. inverse the bits, 1100110 2. add a binary digit, 1100110 + 1 = 1100111 ...
1
vote
1answer
36 views

Using unit tests to measure Django performance

Unit tests are a great way to measure application functionality, but I'm wondering has anyone used them for some preliminary performance profiling? What I'm talking about is running some profiling ...
0
votes
1answer
24 views

Python ElementTree : partially parsing a large file

I have a large XML file, which is roughly structured (in this order) : <document> <interesting_part> ... </interesting_part> <foo> ... 60000 lines ...
2
votes
4answers
144 views

python list comprehension vs +=

Today I was trying to find a method, to do some processing on strings in python. Some more senior programmer than I'm said not to use += but use ''.join() I could also read this in eg: ...
1
vote
3answers
82 views

Avoiding looping unnecessarily

Looking for advice on how to restructure data in python to avoid too much looping. I am retrieving some data via an api which I am working with. Unfortunately, due to the data structure being ...
2
votes
2answers
123 views

Most efficient way to add prefix to Python dictionary keys

So I find myself needing to add a prefix to a Python dictionary. Basically what I want is for the user of this dictionary to be able to add a prefix on instantiation of the dictionary, in which case ...
0
votes
2answers
53 views

Django admin change form load quite slow

One of my Django websites has following database models: In Django App “common”: class Collection(models.Model): name = models.CharField(max_length = 255, unique = True) _short_name = ...
3
votes
1answer
108 views

Scipy Sparse Matrix - Dense Vector Multiplication Performance - Blocks vs Large Matrix

I have a number of scipy sparse matrices (currently in CSR format) that I need to multiply with a dense numpy 1D vector. The vector is called G: print G.shape, G.dtype (2097152,) complex64 Each ...
1
vote
1answer
33 views

Format of a permutation of a python dictionary

Hi I have this code... x = {'stack': ['2', '3'], 'overflow': ['1', '2']} for i in x.values(): heroes = {x[0]:x[1:] for x in permutations(i)} print heroes This gives me... {'3': ('2',), ...
4
votes
4answers
91 views

Updating a python dictionary while adding to existing keys?

I'm looking for the most efficient and pythonic (mainly efficient) way to update a dictionary but keep the old values if an existing key is present. For example... myDict1 = {'1': ('3', '2'), '3': ...

1 2 3 4 5 27