Incubator-mxnet: Default CPU allocator no longer multiple of 64 bytes

Created on 3 Aug 2020  路  3Comments  路  Source: apache/incubator-mxnet

Description

CPUs perform best when tensors are allocated at a multiple of 64 bytes. The reason is that AVX512 instructions operate on 64 bytes at a time and memory access is more efficient when memory is aligned.

This code intends to align to a multiple of 64 bytes:
https://github.com/apache/incubator-mxnet/blob/4bb82245ee5fcbfd32da6461f7b0770ae3c2d9b6/src/storage/cpu_device_storage.h#L54-L56

However, the above code pedantically only controls overall alignment of memory blocks, not the storage managers that divvy them up. Commit 3ef00b8840c05c49118705f6fd9663ebb951f3a1 broke 64-byte alignment in the default storage manager.

To Reproduce

  1. Add the line
  CHECK_EQ(reinterpret_cast<intptr_t>(handle->dptr) % 64, 0);

here: https://github.com/apache/incubator-mxnet/blob/4bb82245ee5fcbfd32da6461f7b0770ae3c2d9b6/src/storage/storage.cc#L205

  1. Compile MXNet including MKLDNN (otherwise 16-byte alignment is allowed though in my opinion it shouldn't be, since compilers can still vectorize without MKLDNN).
  2. Use MXNet to compute something (and be sure to print it out to actually force things to happen). Do this often enough and you'll get errors from the above check.

Note that doing the same on 2abf0b8c2b3361c73c9dfdeabdb8a88278b693d0 works successfully without error.

cc @andrei5055 @pengzhao-intel

Bug Memory

Most helpful comment

I will take a look at this

All 3 comments

I will take a look at this

I will take a look at this

Thanks 馃憤

Fixed by #18885

Was this page helpful?
0 / 5 - 0 ratings