-
-
Notifications
You must be signed in to change notification settings - Fork 459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Config and structural updates to support unseq implementation #6016
Conversation
Can one of the admins verify this patch? |
|
||
#pragma once | ||
|
||
#include <hpx/config.hpp> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you need this file? Wouldn't #including <hpx/config.hpp> instead of this file be sufficient?
@@ -0,0 +1,22 @@ | |||
set(tests "") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file misses Copyright, License, and SPDX-License-Identifier. It also misses an endline on the last line.
#define HPX_LANE_SIZE 64 | ||
#endif | ||
|
||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Endline is missing here.
#define HPX_LANE_SIZE 16 | ||
#else | ||
#define HPX_LANE_SIZE 64 | ||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the default should be no vectorization, e.g. if this is compiled on an ARM/SVE platform or similar. Alternatively, let's cause the compilation to fail (have an #error
.
#define HPX_LANE_SIZE 64 | ||
#endif | ||
|
||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of your new files miss endline characters on the last lines.
Proposed Changes
Any background context you want to provide?
#2271