Python Forum
Which method for arrays is faster ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Which method for arrays is faster ?
#3
Scenario 1:
You make a list and fill it with data. Task done.

Scenario 2:
You've to repeat this one million times.

If scenario 2 is the case, then preallocate the numpy.array once.
Then you can work with the same list one million times without creating new lists/arrays.
Of course, this depends on the algorithm you're using.

Allocating memory is slow.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
RE: Which method for arrays is faster ? - by DeaD_EyE - Aug-31-2021, 10:58 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020