-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Use iced_aw 0.70.0 #2016
Merged
Merged
Use iced_aw 0.70.0 #2016
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Should have the fixes I need
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## master #2016 +/- ##
======================================
- Coverage 84% 84% -0%
======================================
Files 151 151
Lines 18563 18562 -1
======================================
- Hits 15585 15580 -5
- Misses 2978 2982 +4
☔ View full report in Codecov by Sentry. |
andrewdavidmackenzie
added a commit
that referenced
this pull request
Sep 3, 2023
* Consume the array and avoid clone * Limit length of comments * Refactoring * Input::take and count() take into account initializers * Add an accessor for initializer * Add is_always_ready() method * Reimplement make_ready() to generate many jobs * Remove comment * Refactor * Add test * Improve README.md * Increased parallelization - but leads to out of order execution and test failures in matrix_mult and sequence of sequences * Fix count imports * Ignore parallel test for now * build(deps): bump clap from 4.3.23 to 4.3.24 (#2008) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.23 to 4.3.24. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@v4.3.23...v4.3.24) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump serde from 1.0.185 to 1.0.186 (#2007) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.185 to 1.0.186. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.185...v1.0.186) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Correct the matrix multiplication DESCRIPTION.md * Correct some strings * Improve description * Strop maintaining a queue length variable * Improve error message * Improve debugging message * Factor out retire_jobs() * Add comment * Improve debug message * Make the WAIT/DONT_WAIT semantics explicit * build(deps): bump wasmtime from 12.0.0 to 12.0.1 (#2012) Bumps [wasmtime](https://github.com/bytecodealliance/wasmtime) from 12.0.0 to 12.0.1. - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md) - [Commits](bytecodealliance/wasmtime@v12.0.0...v12.0.1) --- updated-dependencies: - dependency-name: wasmtime dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump serde from 1.0.186 to 1.0.188 (#2013) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.186 to 1.0.188. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.186...v1.0.188) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Small refactoring * build(deps): bump clap from 4.3.24 to 4.4.0 (#2011) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.24 to 4.4.0. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@v4.3.24...clap_complete-v4.4.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Function renaming * Comment * build(deps): bump clap from 4.4.0 to 4.4.1 (#2014) Bumps [clap](https://github.com/clap-rs/clap) from 4.4.0 to 4.4.1. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.4.0...v4.4.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Move matrix functions and flows into matrix module of flowstdlib * Fix link * Order modules and functions in manifest * newline * Fix multiply.toml and improve lib_build output * Fix clippy * Remove matrix_mult as an example and correct its test in lib * Fix book reference * Use iced_aw 0.70.0 (#2016) * Use iced_aw 0.70.0 Should have the fixes I need * Adapt to new modal API * Consume the array and avoid clone * Limit length of comments * Refactoring * Input::take and count() take into account initializers * Add an accessor for initializer * Add is_always_ready() method * Reimplement make_ready() to generate many jobs * Remove comment * Refactor * Add test * Improve README.md * Increased parallelization - but leads to out of order execution and test failures in matrix_mult and sequence of sequences * Fix count imports * Ignore parallel test for now * Correct the matrix multiplication DESCRIPTION.md * Correct some strings * Improve description * Strop maintaining a queue length variable * Improve error message * Improve debugging message * Factor out retire_jobs() * Add comment * Improve debug message * Make the WAIT/DONT_WAIT semantics explicit * Small refactoring * Function renaming * Comment * Move matrix functions and flows into matrix module of flowstdlib * Fix link * Order modules and functions in manifest * newline * Fix multiply.toml and improve lib_build output * Fix clippy * Remove matrix_mult as an example and correct its test in lib * Fix book reference * Formatting * typo * improve text * Text output tweaks * Cargo update * Cargo update * Change multiply_row to have multiple outputs * Change multiply_row to have multiple outputAdd row indexing to duplicate_rows and index combining in multiply_rows * Rename transpose output to "matrix" * Add column indexes to matrix transpose and duplicate them in multiply flow also * Add a compose_matrix function in flowstdlib * Add to lib and fix clippys * Get compose_matrix more or less working * Write to specific matrix cells using indexes * Add some docs to the multiply flow. Add compose_matrix to SUMMARY. * Improve docs on parallelism and order * Remove test * Fix sequence of sequences * Remove TODOS and simplift input.take() --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Should have the fixes I need in iced_aw