Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/468-469' into 468-469
Browse files Browse the repository at this point in the history
  • Loading branch information
rawkintrevo committed Nov 7, 2024
2 parents b1b1f41 + e9ade55 commit 03ba85a
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 7 deletions.
2 changes: 0 additions & 2 deletions qumat/amazon_braket_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def draw_circuit(circuit):
# For simplicity, we'll print the circuit object which gives some textual representation.
print(circuit)


def apply_rx_gate(circuit, qubit_index, angle):
if isinstance(angle, (int, float)):
circuit.rx(qubit_index, angle)
Expand All @@ -93,7 +92,6 @@ def apply_rz_gate(circuit, qubit_index, angle):
param = FreeParameter(angle)
circuit.rz(qubit_index, param)


def apply_u_gate(circuit, qubit_index, theta, phi, lambd):
circuit.rx(qubit_index, theta)
circuit.ry(qubit_index, phi)
Expand Down
1 change: 0 additions & 1 deletion qumat/cirq_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ def execute_circuit(circuit, backend, backend_config):
def draw_circuit(circuit):
print(circuit)


def apply_rx_gate(circuit, qubit_index, angle):
param = sympy.Symbol(angle) if isinstance(angle, str) else angle
qubit = cirq.LineQubit(qubit_index)
Expand Down
17 changes: 13 additions & 4 deletions website/_includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,19 @@
</div>
</div>

<!-- Twitter Posts Widget -->
<div class="card">
<!-- Talks Widget -->
<div class="card mb-4 sidebar">
<div class="card-header">
Talks
</div>
<div class="card-body">
<a class="twitter-timeline" data-height="500" href="https://twitter.com/ApacheMahout">Tweets by ApacheMahout</a>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<ul class="list-unstyled mb-0">
<li>
<a href="https://www.youtube.com/watch?v=tgFaUL1wYhY" target="_blank">
QuMat: Apache Mahout's Quantum Computing Interface
</a>
[<a href="https://www.slideshare.net/slideshow/qumat_-apache-mahout-s-quantum-computing-interface-pptx/272300949" target="_blank">Slides</a>]
</li>
</ul>
</div>
</div>
48 changes: 48 additions & 0 deletions website/_posts/2024-11-01-Meeting-Minutes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
layout: post
title: Meeting Minutes
date: 2024-11-01 00:00:00 -0800
category: minutes
---
## Weekly community meeting
[Subscribe](mailto:[email protected]) to the Mahout User list to ask for details on joining.

### Attendees
* Andrew Musselman
* Trevor Grant

### Old Business
* [Splitting Mahout project code into discrete repos (andrew)](https://issues.apache.org/jira/projects/MAHOUT/issues/MAHOUT-2204)
* mahout-website
* mahout-classic
* mahout-samsara
* mahout-qumat
* [Docker image for web site build (to jowanza)](https://issues.apache.org/jira/projects/MAHOUT/issues/MAHOUT-2165)
* Roadmap
* Q2
* Classic in maintenance mode (done)
* Q3
* Qumat with hardened (tests, docs, CI/CD) cirq and qiskit backends (in flight)
* Kernel methods (in flight)
* Submit public talk about Qumat (done, Fossy Aug 2024)
* Amazon Braket (done)
* Q4 and beyond
* Distributed quantum solvers
* Add GitHub Project
* Add "talks" page to web site (for Andrew)
* PyPi release for QuMat
* Tommy has picked up [kernel methods spike](https://issues.apache.org/jira/browse/MAHOUT-2200) now [in github issue](https://github.com/apache/mahout/issues/456)
* [457](https://github.com/apache/mahout/issues/457)
* [458](https://github.com/apache/mahout/issues/458)
* [Data encoding and kernel notes](https://github.com/apache/mahout/wiki/Data-Encoding-and-Kernel-Notes)
* Reviewing https://github.com/rawkintrevo/mahout/blob/pqc-docs/docs/p_q_c.md
* Reviewing https://docs.quantum.ibm.com/api/qiskit/qiskit.circuit.library.ZZFeatureMap

### New Business
Trevor and Andrew taking these
* [#461 Implement testing workflow](https://github.com/apache/mahout/issues/461)
* [#463 Move PQC docs to this repo](https://github.com/apache/mahout/issues/463)
* [#468 Add a Parameter object](https://github.com/apache/mahout/issues/468)
* [#469 Bind parameter values at execution](https://github.com/apache/mahout/issues/469)
* [#470 Add Qumat to PyPi](https://github.com/apache/mahout/issues/470)

0 comments on commit 03ba85a

Please sign in to comment.