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

Change neutral element of <fNN as iter::Sum> to neg_zero #129321

Merged
merged 1 commit into from
Aug 21, 2024

Conversation

krtab
Copy link
Contributor

@krtab krtab commented Aug 20, 2024

The neutral element used to be positive zero, but +0 + -0 = +0 so -0 seems better indicated.

The neutral element used to be positive zero, but +0 + -0 = +0 so
-0 seems better indicated.
@rustbot
Copy link
Collaborator

rustbot commented Aug 20, 2024

r? @workingjubilee

rustbot has assigned @workingjubilee.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Aug 20, 2024
@tbu-
Copy link
Contributor

tbu- commented Aug 20, 2024

Does that mean that the empty list sums to -0.0? That sounds unexpected to me.

@krtab
Copy link
Contributor Author

krtab commented Aug 20, 2024

We could special case the empty iterator to give +0, but then we would loose a kind of "associativity", and a.sum() + b.sum() would not be the same as a.join(b).sum() (but float addition isn't associative anyway).

@workingjubilee
Copy link
Member

Does that mean that the empty list sums to -0.0? That sounds unexpected to me.

Unexpected, perhaps, but swapping this sign shouldn't change the result of any expr that does list <= 0.0 or any related comparison, so I'm going to approve this.

@bors r+

@bors
Copy link
Collaborator

bors commented Aug 21, 2024

📌 Commit 4908188 has been approved by workingjubilee

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 21, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 21, 2024
…iaskrgr

Rollup of 6 pull requests

Successful merges:

 - rust-lang#128727 (bump conflicting_repr_hints lint to be shown in dependencies)
 - rust-lang#129232 (Fix `thread::sleep` Duration-handling for ESP-IDF)
 - rust-lang#129321 (Change neutral element of <fNN as iter::Sum> to neg_zero)
 - rust-lang#129353 (llvm-wrapper: adapt for LLVM 20 API changes)
 - rust-lang#129363 (Force `LC_ALL=C` for all run-make tests)
 - rust-lang#129364 (safe transmute: gracefully bubble-up layout errors)

r? `@ghost`
`@rustbot` modify labels: rollup
@bors bors merged commit 3fb8faa into rust-lang:master Aug 21, 2024
6 checks passed
@rustbot rustbot added this to the 1.82.0 milestone Aug 21, 2024
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Aug 21, 2024
Rollup merge of rust-lang#129321 - krtab:float_sum, r=workingjubilee

Change neutral element of <fNN as iter::Sum> to neg_zero

The neutral element used to be positive zero, but +0 + -0 = +0 so -0 seems better indicated.
@bjorn3
Copy link
Member

bjorn3 commented Aug 22, 2024

This breaks portable-simd tests for cg_clif at least as portable-simd uses 0.0 as neutral element for reduce_sum().

@bjorn3

This comment was marked as duplicate.

@workingjubilee
Copy link
Member

workingjubilee commented Aug 23, 2024

Oh, sure, need to mirror in the simd stuff.

@JakenHerman
Copy link
Contributor

This causes unintended side effects on presentation layer applications like using Tera templates, for example.

workingjubilee added a commit to workingjubilee/rustc that referenced this pull request Feb 8, 2025
…=workingjubilee

Document `Sum::sum` returns additive identities for `[]`

Because the neutral element of `<fNN as iter::Sum>` was changed to `neg_zero`, the documentation needed to be updated, as it was reporting inadequate information about what should be expected from the return.

Relevant Commit: rust-lang@4908188
Relevant Pull Request: rust-lang#129321

---

The referenced commit causes unintended side effects on presentation layer applications like using Tera templates, for example. I'm not sure what the motivation was behind the original change, but it seems like more discussion should be put into this issue and potentially have that change reverted.
workingjubilee added a commit to workingjubilee/rustc that referenced this pull request Feb 9, 2025
…=workingjubilee

Document `Sum::sum` returns additive identities for `[]`

Because the neutral element of `<fNN as iter::Sum>` was changed to `neg_zero`, the documentation needed to be updated, as it was reporting inadequate information about what should be expected from the return.

Relevant Commit: rust-lang@4908188
Relevant Pull Request: rust-lang#129321

---

The referenced commit causes unintended side effects on presentation layer applications like using Tera templates, for example. I'm not sure what the motivation was behind the original change, but it seems like more discussion should be put into this issue and potentially have that change reverted.
workingjubilee added a commit to workingjubilee/rustc that referenced this pull request Feb 9, 2025
…=workingjubilee

Document `Sum::sum` returns additive identities for `[]`

Because the neutral element of `<fNN as iter::Sum>` was changed to `neg_zero`, the documentation needed to be updated, as it was reporting inadequate information about what should be expected from the return.

Relevant Commit: rust-lang@4908188
Relevant Pull Request: rust-lang#129321

---

The referenced commit causes unintended side effects on presentation layer applications like using Tera templates, for example. I'm not sure what the motivation was behind the original change, but it seems like more discussion should be put into this issue and potentially have that change reverted.
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Feb 9, 2025
Rollup merge of rust-lang#136710 - JakenHerman:jaken/iterator-docs, r=workingjubilee

Document `Sum::sum` returns additive identities for `[]`

Because the neutral element of `<fNN as iter::Sum>` was changed to `neg_zero`, the documentation needed to be updated, as it was reporting inadequate information about what should be expected from the return.

Relevant Commit: rust-lang@4908188
Relevant Pull Request: rust-lang#129321

---

The referenced commit causes unintended side effects on presentation layer applications like using Tera templates, for example. I'm not sure what the motivation was behind the original change, but it seems like more discussion should be put into this issue and potentially have that change reverted.
github-actions bot pushed a commit to tautschnig/verify-rust-std that referenced this pull request Mar 11, 2025
…=workingjubilee

Document `Sum::sum` returns additive identities for `[]`

Because the neutral element of `<fNN as iter::Sum>` was changed to `neg_zero`, the documentation needed to be updated, as it was reporting inadequate information about what should be expected from the return.

Relevant Commit: rust-lang@4908188
Relevant Pull Request: rust-lang#129321

---

The referenced commit causes unintended side effects on presentation layer applications like using Tera templates, for example. I'm not sure what the motivation was behind the original change, but it seems like more discussion should be put into this issue and potentially have that change reverted.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants