std::aligned_alloc and aligned operator new in C++ 17
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.
Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e
struct alignas(16) aligned_shorts
{
short shorts[8];
};
Only then new aligned_shorts[7] will result in aligned memory?
But what if I want a aligned dynamic array i. e of ints?
int *aligned_ints;// want aligned dynamic array
Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:
int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}
memory-management c++17 memory-alignment
add a comment |
I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.
Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e
struct alignas(16) aligned_shorts
{
short shorts[8];
};
Only then new aligned_shorts[7] will result in aligned memory?
But what if I want a aligned dynamic array i. e of ints?
int *aligned_ints;// want aligned dynamic array
Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:
int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}
memory-management c++17 memory-alignment
1
"I would need to overallocate/pad a bit" Why wouldstd::aligned_alloceven exist if you needed to do that?
– Nicol Bolas
Nov 26 '18 at 17:02
@NicolBolas I had overalignment in mind. Clarified that with the edit.
– Andrey Pro
Nov 26 '18 at 18:02
I'm confused, why not just usestd::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?
– Frank
Nov 26 '18 at 20:37
@Frank you are right, inattention on my part. Corrected.
– Andrey Pro
Nov 26 '18 at 21:27
add a comment |
I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.
Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e
struct alignas(16) aligned_shorts
{
short shorts[8];
};
Only then new aligned_shorts[7] will result in aligned memory?
But what if I want a aligned dynamic array i. e of ints?
int *aligned_ints;// want aligned dynamic array
Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:
int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}
memory-management c++17 memory-alignment
I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.
Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e
struct alignas(16) aligned_shorts
{
short shorts[8];
};
Only then new aligned_shorts[7] will result in aligned memory?
But what if I want a aligned dynamic array i. e of ints?
int *aligned_ints;// want aligned dynamic array
Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:
int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}
memory-management c++17 memory-alignment
memory-management c++17 memory-alignment
edited Nov 26 '18 at 21:26
Andrey Pro
asked Nov 26 '18 at 16:47
Andrey ProAndrey Pro
256217
256217
1
"I would need to overallocate/pad a bit" Why wouldstd::aligned_alloceven exist if you needed to do that?
– Nicol Bolas
Nov 26 '18 at 17:02
@NicolBolas I had overalignment in mind. Clarified that with the edit.
– Andrey Pro
Nov 26 '18 at 18:02
I'm confused, why not just usestd::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?
– Frank
Nov 26 '18 at 20:37
@Frank you are right, inattention on my part. Corrected.
– Andrey Pro
Nov 26 '18 at 21:27
add a comment |
1
"I would need to overallocate/pad a bit" Why wouldstd::aligned_alloceven exist if you needed to do that?
– Nicol Bolas
Nov 26 '18 at 17:02
@NicolBolas I had overalignment in mind. Clarified that with the edit.
– Andrey Pro
Nov 26 '18 at 18:02
I'm confused, why not just usestd::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?
– Frank
Nov 26 '18 at 20:37
@Frank you are right, inattention on my part. Corrected.
– Andrey Pro
Nov 26 '18 at 21:27
1
1
"I would need to overallocate/pad a bit" Why would
std::aligned_alloc even exist if you needed to do that?– Nicol Bolas
Nov 26 '18 at 17:02
"I would need to overallocate/pad a bit" Why would
std::aligned_alloc even exist if you needed to do that?– Nicol Bolas
Nov 26 '18 at 17:02
@NicolBolas I had overalignment in mind. Clarified that with the edit.
– Andrey Pro
Nov 26 '18 at 18:02
@NicolBolas I had overalignment in mind. Clarified that with the edit.
– Andrey Pro
Nov 26 '18 at 18:02
I'm confused, why not just use
std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?– Frank
Nov 26 '18 at 20:37
I'm confused, why not just use
std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?– Frank
Nov 26 '18 at 20:37
@Frank you are right, inattention on my part. Corrected.
– Andrey Pro
Nov 26 '18 at 21:27
@Frank you are right, inattention on my part. Corrected.
– Andrey Pro
Nov 26 '18 at 21:27
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53485612%2fstdaligned-alloc-and-aligned-operator-new-in-c-17%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53485612%2fstdaligned-alloc-and-aligned-operator-new-in-c-17%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
"I would need to overallocate/pad a bit" Why would
std::aligned_alloceven exist if you needed to do that?– Nicol Bolas
Nov 26 '18 at 17:02
@NicolBolas I had overalignment in mind. Clarified that with the edit.
– Andrey Pro
Nov 26 '18 at 18:02
I'm confused, why not just use
std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?– Frank
Nov 26 '18 at 20:37
@Frank you are right, inattention on my part. Corrected.
– Andrey Pro
Nov 26 '18 at 21:27