Stream: helpdesk (published)

Topic: When to use views, when to not use them


view this post on Zulip Argel Ramírez Reyes (May 26 2021 at 17:08):

I have a long standing question.
Slicing arrays create copies. So in small examples it is usual that we use views to avoid the cost of making copies. Benchmarking with small arrays usually backs up this perception. However, in my real life code, where I usually work with 51251280*200 arrays, I think this might be detrimental, i.e. that the cost of repeatedly doing operations with data that is non-contiguous in memory (for example in the fourth dimension) might actually be costlier than makin a copy once and then operating on a slice that is now contiguous data.

Is there a rule of thumb to decide when to use views and when to use regular slicing? For example, even unrolling a loop instead of creating slices could benefit from a copy if the data points are too far from each other, right?

view this post on Zulip Wolf Thomsen (May 26 2021 at 17:27):

Not a performance guru here, but my guess would be it's related to caches. If something is not contiguous but in L1 or L2 cache, it might still be very fast. If you have to load many non contiguous elements from RAM, the overhead probably grows quite fast

view this post on Zulip Brenhin Keller (May 26 2021 at 18:41):

Ah yeah, good question.. I guess it depends both on
1) how many times are you going to operate on a slice after extracting it
2) how far away in memory from each other are the relevant elements you want to make a slice of
3) how big are your caches

view this post on Zulip Brenhin Keller (May 26 2021 at 18:42):

There are also still corner cases where views may allocate, but that's the opposite end of the spectrum from what you're thinking about I guess

view this post on Zulip Brenhin Keller (May 26 2021 at 18:46):

I suppose also if the slice is small enough and cache management is smart enough, then the view'd element should stick around in your cache after the first time you get them, just like if you made a slice. But if your slice is bigger than cache, then I suppose making the slice might be the only way to ensure subsequent accesses will be as fast as possible.


Last updated: Oct 02 2023 at 04:34 UTC