Skip to content
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

Closed

Conversation

apivovarov
Copy link
Contributor

@apivovarov apivovarov commented Feb 25, 2025

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.

@apivovarov apivovarov requested a review from ezhulenev February 25, 2025 02:28
@apivovarov apivovarov force-pushed the no_move_for_KernelMetadata branch from 3a4e2c9 to 804e172 Compare February 25, 2025 02:29
@apivovarov apivovarov force-pushed the no_move_for_KernelMetadata branch from 804e172 to 0d19b1e Compare March 10, 2025 19:22
@@ -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;
Copy link
Contributor Author

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;
Copy link
Contributor Author

@apivovarov apivovarov Mar 10, 2025

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};
Copy link
Contributor Author

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,
Copy link
Contributor Author

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; }
Copy link
Contributor Author

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.

@apivovarov
Copy link
Contributor Author

Hi Eugene
I've just rebased this PR and added inline comments to justify each change.

Could you take a look when you have a moment? @ezhulenev

@apivovarov apivovarov force-pushed the no_move_for_KernelMetadata branch from 0d19b1e to 8aeb460 Compare March 11, 2025 18:50
@apivovarov apivovarov force-pushed the no_move_for_KernelMetadata branch from 8aeb460 to 37b8963 Compare March 20, 2025 21:21
@apivovarov
Copy link
Contributor Author

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

Comment on lines 258 to 259
static_assert(std::is_trivially_copyable_v<DynamicOrStaticInteger>,
"DynamicOrStaticInteger is expected to be trivially copyable");
Copy link
Member

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.

Copy link
Contributor Author

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.

@apivovarov apivovarov force-pushed the no_move_for_KernelMetadata branch from 37b8963 to 6051f15 Compare March 21, 2025 03:03
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
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
copybara-service bot pushed a commit to tensorflow/tensorflow that referenced this pull request Mar 21, 2025
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
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
Reverts 4ee2886

FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 731692216
copybara-service bot pushed a commit to tensorflow/tensorflow that referenced this pull request Mar 21, 2025
FUTURE_COPYBARA_INTEGRATE_REVIEW=openxla/xla#23056 from apivovarov:no_move_for_KernelMetadata 6051f15383d63210c313ab712eaa3a00c7b0105f
PiperOrigin-RevId: 731692216
copybara-service bot pushed a commit to tensorflow/tensorflow that referenced this pull request Mar 21, 2025
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
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
…mits/cdb53266e6c251d91a2c321d64e8466caff129a9).

Reverts 4ee2886

FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 737986828
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
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
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
…mits/cdb53266e6c251d91a2c321d64e8466caff129a9).

Reverts 4ee2886

FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 737986828
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
…tform API equivalent.

Reverts changelist 739108726

FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 739132749
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
Reverts 4ee2886

FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 739119656
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
…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
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
…mits/cdb53266e6c251d91a2c321d64e8466caff129a9).

Reverts 4ee2886

FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 737986828
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
…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
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 739257603
copybara-service bot pushed a commit that referenced this pull request Mar 21, 2025
FUTURE_COPYBARA_INTEGRATE_REVIEW=#23056 from apivovarov:no_move_for_KernelMetadata 6051f15
PiperOrigin-RevId: 739257603
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants