This is an automated email from the ASF dual-hosted git repository.

guan404ming pushed a change to branch dependabot/uv/torch-2.12.0
in repository https://gitbox.apache.org/repos/asf/mahout.git


 discard e08203839 chore(deps-dev): bump torch from 2.9.0 to 2.12.0
     add 6d7b82ff2 chore(deps-dev): bump torch from 2.8.0 to 2.12.0 in 
/qdp/qdp-python (#1397)
     add 3692e694c Change community meeting frequency to monthly (#1400)
     add c4da8c7ab docs: add pydoc-markdown API generation config (#1381)
     add b20959e40 chore(deps): bump black from 23.12.1 to 26.3.1 (#1403)
     add 69568a017 [Feature] Generate Python API docs from module discovery 
(#1392)
     add 28bab6e86 docs: add QDP source API docstrings (#1404)
     add 9d4c85fd7 chore(deps): bump launch-editor from 2.12.0 to 2.14.1 in 
/website (#1406)
     add 8a4ee3632 Update CODEOWNERS to remove Guan-Ming
     add de4ec14f6 chore(deps): bump ws from 7.5.10 to 7.5.11 in /website 
(#1405)
     add 91335ed19 [Bug][QDP] Fix List<T> readers failing on nullable outer 
rows (#1402)
     add 415c8da0d chore(deps): bump webpack-dev-server from 5.2.4 to 5.2.5 in 
/website (#1408)
     add 08a4852f2 [ci] Add stale PR workflow (#1411)
     add 8379a84ec [Feature][QDP] Pipeline file load respects 
PipelineConfig.dtype (#1407)
     add 5d424cde8 Update CODEOWNERS entries for removing ryankert01 from some 
entries
     add 205ce75f6 fix(qdp-core): link cudart locally and stub FFI when toolkit 
is absent  (#1321)
     add 96555a8a8 [Docs] Add 0.6 website version snapshot (#1417)
     add cb8e2f066 [Website] Redesign news index and blog post pages (#1418)
     add a17627f5b [Website] Add Qumat 0.5.0 release blog (#1419)
     add de484ad8d [Website] Update QuMat release blogs and community roster 
(#1420)
     add 3e631d919 [Website] Rename dev docs version to master (#1421)
     add e53b879a8 [Website] Split blog and meeting minutes listings (#1423)
     add f1c7b4aa9 [Website] Add News dropdown navigation (#1424)
     add 0474f57ef [Website] Split blog post pagination by content type (#1425)
     add ca026635d ci: validate website build for API docs changes (#1426)
     add 44b04fbee [Website] Remove News page kicker (#1428)
     add dccc97dba feat: add local docs versioning validation (#1427)
     add 359f9590d refactor(qdp): rename validate_tensor to validate_tensor_cpu 
and drop redundant check (#1415)
     add 58e4aff32 [Testing][QDP] f32 Parquet fidelity tests and benchmark 
(#1422)
     add 826c3abb5 [MAHOUT-1414][QDP] Expose native cuda_available() and gate 
GPU tests on it (#1416)
     add 35a8526d9 [Bug][QDP] Align Iris GPU training path with sibling 
pipelines (real dtype + leaf weights) (#1412)
     add d93533b60 add viiccwen committer in website (#1437)
     add 42fc6d073 chore(deps-dev): bump torch from 2.9.0 to 2.12.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e08203839)
            \
             N -- N -- N   refs/heads/dependabot/uv/torch-2.12.0 (42fc6d073)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/CODEOWNERS                                 |  26 +-
 .github/workflows/python-testing.yml               |  18 +-
 .github/workflows/stale_pull_request.yml           |  72 ++
 .github/workflows/website-build.yml                |   8 +
 .github/workflows/website.yml                      |   3 +
 CONTRIBUTING.md                                    |  14 +
 docs/api/index.md                                  |  19 +
 .../backends/__init__.py => docs/api/qumat.yml     |  30 +-
 docs/api/qumat_header.md                           |  10 +
 docs/api/qumat_qdp.yml                             |  50 ++
 docs/api/qumat_qdp_header.md                       |  10 +
 ...elease.md => 2025-04-17-Qumat-0.4.0-Release.md} |   2 +-
 docs/blog/2026-02-02-Qumat-0.5.0-Release.md        | 208 ++++++
 docs/blog/2026-06-01-Qumat-0.6.0-Release/index.md  | 186 ++++--
 docs/blog/authors.yml                              |   8 +-
 docs/community/index.md                            |   4 +-
 docs/community/who-we-are.md                       |   2 +
 pyproject.toml                                     |   1 +
 qdp/qdp-core/build.rs                              |  65 +-
 qdp/qdp-core/src/gpu/cuda_ffi.rs                   | 141 ++++
 qdp/qdp-core/src/lib.rs                            |   1 +
 qdp/qdp-core/src/pipeline_runner.rs                | 731 ++++++++++++++++++---
 qdp/qdp-core/src/readers/arrow_ipc.rs              | 215 +++++-
 qdp/qdp-core/src/readers/parquet.rs                | 328 ++++++++-
 qdp/qdp-core/tests/common/mod.rs                   |  77 ++-
 qdp/qdp-core/tests/parquet_f32_fidelity.rs         | 257 ++++++++
 qdp/qdp-kernels/build.rs                           |  10 +-
 qdp/qdp-python/benchmark/README.md                 |  24 +
 qdp/qdp-python/benchmark/benchmark_parquet_f32.py  | 215 ++++++
 .../qdp_pipeline/iris_amplitude.py                 |  17 +-
 qdp/qdp-python/pyproject.toml                      |   4 +-
 qdp/qdp-python/qumat_qdp/__init__.py               |  22 +
 qdp/qdp-python/qumat_qdp/backend.py                |   8 +
 qdp/qdp-python/qumat_qdp/loader.py                 |  42 ++
 qdp/qdp-python/qumat_qdp/tensor.py                 |   1 +
 qdp/qdp-python/src/engine.rs                       |  24 +-
 qdp/qdp-python/src/lib.rs                          |  13 +
 qdp/qdp-python/src/loader.rs                       |  17 +-
 qdp/qdp-python/src/pytorch.rs                      |  12 +-
 qdp/qdp-python/uv.lock                             | 266 +++++---
 testing/conftest.py                                |  69 +-
 testing/qdp_python/test_fallback.py                |  23 +
 testing/qdp_python/test_quantum_data_loader.py     |   1 +
 uv.lock                                            | 286 ++++++++
 website/README.md                                  |  30 +-
 website/docusaurus.config.ts                       |  62 +-
 website/package-lock.json                          |  20 +-
 website/package.json                               |   4 +-
 website/scripts/sync-docs.js                       |  69 ++
 website/scripts/version-docs.js                    |  58 ++
 website/sidebars.ts                                |  10 +
 website/src/global.d.ts                            |  12 +
 website/src/pages/blog/minutes.tsx                 | 191 ++++++
 website/src/pages/index.tsx                        |   8 +-
 website/src/theme/BlogListPage/index.tsx           | 365 ++++++++++
 website/src/theme/BlogListPage/styles.module.css   | 401 +++++++++++
 website/src/theme/BlogPostItem/index.tsx           | 124 ++++
 website/src/theme/BlogPostItem/styles.module.css   | 133 ++++
 website/src/theme/BlogPostPage/index.tsx           | 112 ++++
 website/src/theme/BlogPostPage/styles.module.css   |  52 ++
 website/static/img/jiekaichang.png                 | Bin 0 -> 1198420 bytes
 .../versioned_docs/version-0.5/community/index.md  |   4 +-
 .../version-0.6}/about/how-to-contribute.md        |   0
 .../version-0.6}/advanced/gap-analysis.md          |   0
 .../versioned_docs/version-0.6}/advanced/pqc.md    |   0
 website/versioned_docs/version-0.6/api/index.md    |  19 +
 .../versioned_docs/version-0.6}/assets/mascot.png  | Bin
 .../version-0.6}/assets/mascot_with_text.png       | Bin
 .../version-0.6}/community/code-of-conduct.md      |   0
 .../community/index.md                             |   4 +-
 .../version-0.6}/community/mailing-lists.md        |   0
 .../community/pr-policy-and-review-guidelines.md   |   3 +
 .../version-0.6}/community/who-we-are.md           |   2 +
 .../versioned_docs/version-0.6}/index.md           |   0
 .../An-Efficient-Quantum-Factoring-Algorithm.md    |   0
 ...-Neutral-Atoms-For-Supervised-Classification.md |   0
 ...antum-machine-learning-beyond-kernel-methods.md |   0
 ...-the-Potential-of-LLMs-for-Quantum-Computing.md |   0
 .../version-0.6}/learning/papers/index.md          |   0
 .../quantum-computing-primer/advanced-topics.md    |   0
 .../quantum-computing-primer/applications.md       |   0
 .../learning/quantum-computing-primer/index.md     |   0
 .../quantum-computing-primer/introduction.md       |   0
 .../quantum-computing-primer/quantum-algorithms.md |   0
 .../quantum-computing-primer/quantum-circuits.md   |   0
 .../quantum-entanglement.md                        |   0
 .../quantum-error-correction.md                    |   0
 .../quantum-computing-primer/quantum-gates.md      |   0
 .../learning}/quantum-computing-primer/qubits.md   |   0
 .../versioned_docs/version-0.6}/qdp/api.md         |   0
 .../versioned_docs/version-0.6}/qdp/concepts.md    |   0
 .../versioned_docs/version-0.6}/qdp/examples.md    |   0
 .../version-0.6}/qdp/getting-started.md            |   0
 .../versioned_docs/version-0.6}/qdp/index.md       |   0
 .../version-0.6}/qdp/observability.md              |   0
 .../versioned_docs/version-0.6}/qdp/python-api.md  |   0
 .../versioned_docs/version-0.6}/qdp/readers.md     |   0
 .../versioned_docs/version-0.6}/qdp/testing.md     |   0
 .../versioned_docs/version-0.6}/qumat/api.md       |   0
 .../version-0.6}/qumat/basic-gates.md              |   0
 .../versioned_docs/version-0.6}/qumat/concepts.md  |   0
 .../versioned_docs/version-0.6}/qumat/examples.md  |   0
 .../version-0.6}/qumat/getting-started.md          |   0
 .../versioned_docs/version-0.6}/qumat/index.md     |   0
 .../version-0.6}/qumat/parameterized-circuits.md   |   0
 ...0.5-sidebars.json => version-0.6-sidebars.json} |   3 +-
 website/versions.json                              |   1 +
 107 files changed, 4850 insertions(+), 377 deletions(-)
 create mode 100644 .github/workflows/stale_pull_request.yml
 create mode 100644 docs/api/index.md
 copy qdp/qdp-python/qumat_qdp/backends/__init__.py => docs/api/qumat.yml (53%)
 create mode 100644 docs/api/qumat_header.md
 create mode 100644 docs/api/qumat_qdp.yml
 create mode 100644 docs/api/qumat_qdp_header.md
 rename docs/blog/{2025-04-17-Qumat-0.4-Release.md => 
2025-04-17-Qumat-0.4.0-Release.md} (86%)
 create mode 100644 docs/blog/2026-02-02-Qumat-0.5.0-Release.md
 create mode 100644 qdp/qdp-core/tests/parquet_f32_fidelity.rs
 create mode 100644 qdp/qdp-python/benchmark/benchmark_parquet_f32.py
 create mode 100644 website/scripts/version-docs.js
 create mode 100644 website/src/pages/blog/minutes.tsx
 create mode 100644 website/src/theme/BlogListPage/index.tsx
 create mode 100644 website/src/theme/BlogListPage/styles.module.css
 create mode 100644 website/src/theme/BlogPostItem/index.tsx
 create mode 100644 website/src/theme/BlogPostItem/styles.module.css
 create mode 100644 website/src/theme/BlogPostPage/index.tsx
 create mode 100644 website/src/theme/BlogPostPage/styles.module.css
 create mode 100644 website/static/img/jiekaichang.png
 copy {docs => website/versioned_docs/version-0.6}/about/how-to-contribute.md 
(100%)
 copy {docs => website/versioned_docs/version-0.6}/advanced/gap-analysis.md 
(100%)
 copy {docs => website/versioned_docs/version-0.6}/advanced/pqc.md (100%)
 create mode 100644 website/versioned_docs/version-0.6/api/index.md
 copy {docs => website/versioned_docs/version-0.6}/assets/mascot.png (100%)
 copy {docs => website/versioned_docs/version-0.6}/assets/mascot_with_text.png 
(100%)
 copy {docs => website/versioned_docs/version-0.6}/community/code-of-conduct.md 
(100%)
 copy website/versioned_docs/{version-0.5 => version-0.6}/community/index.md 
(95%)
 copy {docs => website/versioned_docs/version-0.6}/community/mailing-lists.md 
(100%)
 copy {docs => 
website/versioned_docs/version-0.6}/community/pr-policy-and-review-guidelines.md
 (99%)
 copy {docs => website/versioned_docs/version-0.6}/community/who-we-are.md (96%)
 copy {docs => website/versioned_docs/version-0.6}/index.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/papers/An-Efficient-Quantum-Factoring-Algorithm.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/papers/Quantum-Kernel-Estimation-With-Neutral-Atoms-For-Supervised-Classification.md
 (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/papers/Quantum-machine-learning-beyond-kernel-methods.md 
(100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/papers/Unleashing-the-Potential-of-LLMs-for-Quantum-Computing.md
 (100%)
 copy {docs => website/versioned_docs/version-0.6}/learning/papers/index.md 
(100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/advanced-topics.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/applications.md (100%)
 copy {docs => 
website/versioned_docs/version-0.6}/learning/quantum-computing-primer/index.md 
(100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/introduction.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/quantum-algorithms.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/quantum-circuits.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/quantum-entanglement.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/quantum-error-correction.md 
(100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/quantum-gates.md (100%)
 copy website/versioned_docs/{version-0.4/qumat => 
version-0.6/learning}/quantum-computing-primer/qubits.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/api.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/concepts.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/examples.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/getting-started.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/index.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/observability.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/python-api.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/readers.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qdp/testing.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qumat/api.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qumat/basic-gates.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qumat/concepts.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qumat/examples.md (100%)
 copy {docs => website/versioned_docs/version-0.6}/qumat/getting-started.md 
(100%)
 copy {docs => website/versioned_docs/version-0.6}/qumat/index.md (100%)
 copy {docs => 
website/versioned_docs/version-0.6}/qumat/parameterized-circuits.md (100%)
 copy website/versioned_sidebars/{version-0.5-sidebars.json => 
version-0.6-sidebars.json} (97%)

Reply via email to