-
Notifications
You must be signed in to change notification settings - Fork 533
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
Remove std::move for trivially copyable types #23056
Conversation
3a4e2c9
to
804e172
Compare
804e172
to
0d19b1e
Compare
@@ -318,11 +324,11 @@ std::optional<ParamIndexAndValue> TryParsingInstructionAsParameterAndInteger( | |||
} | |||
std::optional<DynamicOrStaticInteger> integer_value = | |||
GetInstructionValueAsInteger(instruction, precomputed_analyses); | |||
result.value = std::move(integer_value); | |||
result.value = integer_value; |
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.
removing std::move because DynamicOrStaticInteger is trivially copyable, its copy and move operations behave identically because it has no special resources
if (!result.IsValid()) { | ||
return std::nullopt; | ||
} | ||
return std::optional<ParamIndexAndValue>(std::move(result)); | ||
return result; |
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.
- removing std::move because ParamIndexAndValue is trivially copyable.
- removing std::optional too because wrapping result with std::optional explicitly is not necessary - the result will be implicitly converted to std::optional
@@ -377,8 +383,7 @@ std::optional<WhileCondComparisonOrNoOp> PatternMatchLoopCondComparison( | |||
if (!lhs.has_value() || !rhs.has_value()) { | |||
return std::nullopt; | |||
} | |||
return WhileCondComparison{comparison->comparison_direction(), | |||
*std::move(lhs), *std::move(rhs)}; | |||
return WhileCondComparison{comparison->comparison_direction(), *lhs, *rhs}; |
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.
lhs and rhs are ParamIndexAndValue which is trivially copyable - removing std::move
@@ -1696,7 +1701,7 @@ absl::Status HloEvaluator::HandleTuple(const HloInstruction* tuple) { | |||
CHECK(new_result.IsDetermined(visitor_shape_index_)); | |||
Literal literal; | |||
TF_RETURN_IF_ERROR( | |||
literal.CopyFrom(std::move(new_result), | |||
literal.CopyFrom(new_result, |
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.
Literal::CopyFrom expects a reference (&), not an r-value reference (&&). Removing std::move
void set_metadata(KernelMetadata metadata) { | ||
metadata_ = std::move(metadata); | ||
} | ||
void set_metadata(KernelMetadata metadata) { metadata_ = metadata; } |
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.
removing std::move because KernelMetadata is trivially copyable.
Hi Eugene Could you take a look when you have a moment? @ezhulenev |
0d19b1e
to
8aeb460
Compare
8aeb460
to
37b8963
Compare
Hi Reed, It looks like this PR may have gotten lost among the others. Could you take a look and let me know your thoughts? @reedwm |
xla/hlo/evaluator/hlo_evaluator.cc
Outdated
static_assert(std::is_trivially_copyable_v<DynamicOrStaticInteger>, | ||
"DynamicOrStaticInteger is expected to be trivially copyable"); |
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 personally don't think it's worth static_asserting these types are trivially copyable. Without the context of this PR, it's non-obvious to someone reading the code why there is a static assert, and in the very-unlikely case someone does add a non-trivially-copyable field to these types, the only downside will be negligible lower performance since we don't std::move it.
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.
Makes sense, removed the static_asserts.
37b8963
to
6051f15
Compare
Imported from GitHub PR #23056 Changes: - Removed unnecessary std::move calls for some trivially_copyable classes - Literal::CopyFrom expects a reference (&), not an r-value reference (&&). Removed std::move on the first parameter. Copybara import of the project: -- 6051f15 by Alexander Pivovarov <[email protected]>: Remove std::move for trivially copyable types Merging this change closes #23056 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 739064828
Imported from GitHub PR openxla/xla#23056 Changes: - Removed unnecessary std::move calls for some trivially_copyable classes - Literal::CopyFrom expects a reference (&), not an r-value reference (&&). Removed std::move on the first parameter. Copybara import of the project: -- 6051f15383d63210c313ab712eaa3a00c7b0105f by Alexander Pivovarov <[email protected]>: Remove std::move for trivially copyable types Merging this change closes #23056 FUTURE_COPYBARA_INTEGRATE_REVIEW=openxla/xla#23056 from apivovarov:no_move_for_KernelMetadata 6051f15383d63210c313ab712eaa3a00c7b0105f PiperOrigin-RevId: 739064828
FUTURE_COPYBARA_INTEGRATE_REVIEW=openxla/xla#23056 from apivovarov:no_move_for_KernelMetadata 6051f15383d63210c313ab712eaa3a00c7b0105f PiperOrigin-RevId: 731692216
Imported from GitHub PR openxla/xla#23056 Changes: - Removed unnecessary std::move calls for some trivially_copyable classes - Literal::CopyFrom expects a reference (&), not an r-value reference (&&). Removed std::move on the first parameter. Copybara import of the project: -- 6051f15383d63210c313ab712eaa3a00c7b0105f by Alexander Pivovarov <[email protected]>: Remove std::move for trivially copyable types Merging this change closes #23056 PiperOrigin-RevId: 739114605
…mits/cdb53266e6c251d91a2c321d64e8466caff129a9). Reverts 4ee2886 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 737986828
This is to match the recently added API in pthreadpool.h from google/pthreadpool@bd09d5c Otherwise, we would get a linker error when building xnn_threadpool_test: ``` ld: error: undefined symbol: pthreadpool_parallelize_4d_tile_2d_dynamic ``` Command to test: ``` bazel build -c opt --define=pthreadpool_header_only=true \ //xla/backends/cpu/runtime/xnnpack:xnn_threadpool_test ``` Reverts 4ee2886 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 739070530
…mits/cdb53266e6c251d91a2c321d64e8466caff129a9). Reverts 4ee2886 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 737986828
…ectiveOpGroupMode. It is not very obvious from the code or comments, but we can use `GetReplicaGroupCountAndSize` and `GetParticipatingFlattenedIdGroups` only for `AllReduce` and `AllGather`, because of the check in `GetCollectiveUseGlobalDeviceIds`. There is no reason why `CollectiveOpGroupMode` of other instruction would not be enough to get the information. The check of `AllReduce` and `AllGather` was added in #20024, but I couldn't find explanation why it wouldn't work of other instruction. Reverts 4ee2886 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 739163964
…mits/cdb53266e6c251d91a2c321d64e8466caff129a9). Reverts 4ee2886 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 737986828
…ectiveOpGroupMode. It is not very obvious from the code or comments, but we can use `GetReplicaGroupCountAndSize` and `GetParticipatingFlattenedIdGroups` only for `AllReduce` and `AllGather`, because of the check in `GetCollectiveUseGlobalDeviceIds`. There is no reason why `CollectiveOpGroupMode` of other instruction would not be enough to get the information. The check of `AllReduce` and `AllGather` was added in #20024, but I couldn't find explanation why it wouldn't work of other instruction. Reverts 4ee2886 FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15 PiperOrigin-RevId: 739163964
Changes: