Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #75783
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.000 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'from:addr:yahoo.co.uk': 0.04; 'one?': 0.05; '-*-': 0.07; 'nested': 0.07; 'utf-8': 0.07; 'coding:': 0.09; 'idea?': 0.09; 'lawrence': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'language.': 0.14; '"python': 0.16; 'arent': 0.16; 'inaccurate': 0.16; 'itertools': 0.16; 'numpy': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:skip:m 10': 0.16; 'language': 0.16; 'wrote:': 0.18; 'import': 0.22; 'print': 0.22; 'header:User-Agent:1': 0.23; 'skip:_ 20': 0.27; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'tried': 0.27; 'code': 0.31; 'supposed': 0.32; 'run': 0.32; 'but': 0.35; 'subject:?': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'skip:p 20': 0.39; 'received:org': 0.40; 'times': 0.62; 'making': 0.63; 'our': 0.64; 'dear': 0.65; 'charset:windows-1252': 0.65; 'day': 0.76; 'subject:space': 0.84 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
| Subject | Re: Pythonic way to iterate through multidimensional space? |
| Date | Wed, 06 Aug 2014 08:33:20 +0100 |
| References | <lrrdfc$7q7$1@dont-email.me> <lrrggd$6hk$1@dont-email.me> <CAKiaUYzvFztyJt+eBp50VSiLmjb8Gg=+Z8YBjud_0K8dDPEYkA@mail.gmail.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=windows-1252; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | host-92-18-42-123.as13285.net |
| User-Agent | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.0 |
| In-Reply-To | <CAKiaUYzvFztyJt+eBp50VSiLmjb8Gg=+Z8YBjud_0K8dDPEYkA@mail.gmail.com> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.12690.1407310415.18130.python-list@python.org> (permalink) |
| Lines | 68 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1407310415 news.xs4all.nl 2898 [2001:888:2000:d::a6]:36653 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:75783 |
Show key headers only | View raw
On 06/08/2014 06:34, Gayathri J wrote: > Dear Peter > > Below is the code I tried to check if itertools.product() was faster > than normal nested loops... > > they arent! arent they supposed to be...or am i making a mistake? any idea? > * > * > *############################################################ > * > *# -*- coding: utf-8 -*- > * > *import numpy as np* > *import time* > *from itertools import product,repeat* > *def main():* > * # N - size of grid* > * # nvel - number of velocities* > * # times - number of times to run the functions* > * N=256* > * times=3* > * f=np.random.rand(N,N,N)* > ** > * # using loops* > * print "normal nested loop"* > * python_dot_loop1(f,times,N)* > * > * > * print "nested loop using itertools.product()"* > * python_dot_loop2(f,times,N)* > * > * > *def python_dot_loop1(f,times,N):* > * for t in range(times):* > * t1=time.time()* > * for i in range(N):* > * for j in range(N):* > * for k in range(N):* > * f[i,j,k] = 0.0* > * print "python dot loop " + str(time.time()-t1)* > ** > *def python_dot_loop2(f,times,N):* > * rangeN=range(N)* > * for t in range(times):* > * t1=time.time()* > * for i,j,k in product(rangeN,repeat=3):* > * f[i,j,k]=0.0* > * print "python dot loop " + str(time.time()-t1)* > * > * > * > * > *if __name__=='__main__':* > * main()* > *############################################################* > > Who cares, well not I for one? Give me slower but accurate code over faster but inaccurate code any day of the week? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Pythonic way to iterate through multidimensional space? Frank Miles <fpm@u.washington.edu> - 2014-08-05 20:06 +0000
Re: Pythonic way to iterate through multidimensional space? Peter Otten <__peter__@web.de> - 2014-08-05 22:48 +0200
Re: Pythonic way to iterate through multidimensional space? Frank Miles <fpm@u.washington.edu> - 2014-08-05 20:57 +0000
Re: Pythonic way to iterate through multidimensional space? Gayathri J <usethisid2014@gmail.com> - 2014-08-06 11:04 +0530
Re: Pythonic way to iterate through multidimensional space? Chris Angelico <rosuav@gmail.com> - 2014-08-06 16:25 +1000
Re: Pythonic way to iterate through multidimensional space? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-08-06 08:33 +0100
Re: Pythonic way to iterate through multidimensional space? Peter Otten <__peter__@web.de> - 2014-08-06 09:39 +0200
Re: Pythonic way to iterate through multidimensional space? Tim Chase <python.list@tim.thechases.com> - 2014-08-06 06:39 -0500
Re: Pythonic way to iterate through multidimensional space? Wojciech Giel <wojtekgiel@gmail.com> - 2014-08-06 09:04 +0100
Re: Pythonic way to iterate through multidimensional space? Gayathri J <usethisid2014@gmail.com> - 2014-08-06 17:43 +0530
Re: Pythonic way to iterate through multidimensional space? Peter Otten <__peter__@web.de> - 2014-08-06 14:39 +0200
Re: Pythonic way to iterate through multidimensional space? Gayathri J <usethisid2014@gmail.com> - 2014-08-06 18:57 +0530
csiph-web