This is an automated email from the ASF dual-hosted git repository.
hcr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new df1aa3462 docs: add frontmatter to every docs/**/*.md (#1133)
df1aa3462 is described below
commit df1aa3462578f95c6210c412b2fe6609d72464bc
Author: Tim Hsiung <[email protected]>
AuthorDate: Sat Mar 7 10:02:56 2026 +0800
docs: add frontmatter to every docs/**/*.md (#1133)
---
docs/advanced/gap-analysis.md | 5 +++++
docs/advanced/pqc.md | 5 +++++
docs/qdp/observability.md | 5 +++++
docs/qdp/python-api.md | 5 +++++
docs/qdp/readers.md | 5 +++++
docs/qdp/testing.md | 5 +++++
docs/qumat/api.md | 5 +++++
docs/qumat/basic-gates.md | 5 +++++
docs/qumat/parameterized-circuits.md | 5 +++++
9 files changed, 45 insertions(+)
diff --git a/docs/advanced/gap-analysis.md b/docs/advanced/gap-analysis.md
index a9a166e78..59f2a2b7a 100644
--- a/docs/advanced/gap-analysis.md
+++ b/docs/advanced/gap-analysis.md
@@ -1,3 +1,8 @@
+---
+title: Analysis of the QuMat Codebase for Implementing Parameterized Quantum
Circuits
+sidebar_label: Qumat PQC Gap Analysis
+---
+
# Analysis of the QuMat Codebase for Implementing Parameterized Quantum
Circuits
This analysis examines the provided `qumat` codebase to identify the necessary
modifications and additions required to implement Parameterized Quantum
Circuits (PQCs). The analysis is divided into two parts:
diff --git a/docs/advanced/pqc.md b/docs/advanced/pqc.md
index 0500efee3..a96d23c4d 100644
--- a/docs/advanced/pqc.md
+++ b/docs/advanced/pqc.md
@@ -1,3 +1,8 @@
+---
+title: Parameterized Quantum Circuits - Developer's Guide
+sidebar_label: PQC Developer's Guide
+---
+
# Parameterized Quantum Circuits: Developer's Guide
Welcome to the guide designed for developers interested in implementing
parameterized quantum circuits (PQCs) from scratch. This document provides
detailed information about the theory, design, and applications of PQCs without
reliance on existing quantum computing frameworks like Qiskit or Cirq.
diff --git a/docs/qdp/observability.md b/docs/qdp/observability.md
index a4fe92ee1..8778689b1 100644
--- a/docs/qdp/observability.md
+++ b/docs/qdp/observability.md
@@ -1,3 +1,8 @@
+---
+title: NVTX Profiling Guide
+sidebar_label: Observability
+---
+
# NVTX Profiling Guide
## Overview
diff --git a/docs/qdp/python-api.md b/docs/qdp/python-api.md
index 707969e81..e0efd72c8 100644
--- a/docs/qdp/python-api.md
+++ b/docs/qdp/python-api.md
@@ -1,3 +1,8 @@
+---
+title: QDP Python API (qumat_qdp)
+sidebar_label: Python API
+---
+
# QDP Python API (qumat_qdp)
Public Python API for QDP: GPU-accelerated encoding, benchmark helpers, and a
batch iterator for training or evaluation loops.
diff --git a/docs/qdp/readers.md b/docs/qdp/readers.md
index 92d4a5cdf..8d450ebe9 100644
--- a/docs/qdp/readers.md
+++ b/docs/qdp/readers.md
@@ -1,3 +1,8 @@
+---
+title: QDP Input Format Architecture
+sidebar_label: Readers
+---
+
# QDP Input Format Architecture
This document describes the refactored input handling system in QDP that makes
it easy to support multiple data formats.
diff --git a/docs/qdp/testing.md b/docs/qdp/testing.md
index 1c24ba783..ce7d659d9 100644
--- a/docs/qdp/testing.md
+++ b/docs/qdp/testing.md
@@ -1,3 +1,8 @@
+---
+title: QDP Core Test Suite
+sidebar_label: Testing
+---
+
# QDP Core Test Suite
Unit tests for QDP core library covering input validation, API workflows, and
memory safety.
diff --git a/docs/qumat/api.md b/docs/qumat/api.md
index cf529d8bd..462829539 100644
--- a/docs/qumat/api.md
+++ b/docs/qumat/api.md
@@ -1,3 +1,8 @@
+---
+title: QuMat Class Methods
+sidebar_label: API
+---
+
# QuMat Class Methods
## `__init__(self, backend_config)`
diff --git a/docs/qumat/basic-gates.md b/docs/qumat/basic-gates.md
index 60dfd8819..e16589c68 100644
--- a/docs/qumat/basic-gates.md
+++ b/docs/qumat/basic-gates.md
@@ -1,3 +1,8 @@
+---
+title: Quantum Gate Explanations
+sidebar_label: Basic Gates
+---
+
# Quantum Gate Explanations
## NOT Gate (X-Gate)
diff --git a/docs/qumat/parameterized-circuits.md
b/docs/qumat/parameterized-circuits.md
index 65e208bf0..af7d97e31 100644
--- a/docs/qumat/parameterized-circuits.md
+++ b/docs/qumat/parameterized-circuits.md
@@ -1,3 +1,8 @@
+---
+title: Parameterized Quantum Circuits and Rotation Gates
+sidebar_label: Parameterized Circuits
+---
+
# Parameterized Quantum Circuits and Rotation Gates
Parameterized quantum circuits (PQCs) contain gates with tunable parameters
that can be optimized. Instead of using fixed angles, you use symbolic
parameters that can be adjusted to find optimal values.