From 38d7244bbd8e97e2c2615c6d88a89d1202783a72 Mon Sep 17 00:00:00 2001 From: Alexandre Papin Date: Tue, 4 Aug 2026 09:26:20 +0200 Subject: [PATCH 1/2] Update documentation --- articles/quickstart-microsoft-provider-format.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/articles/quickstart-microsoft-provider-format.md b/articles/quickstart-microsoft-provider-format.md index 7bab7ac99..cbb88e0ce 100644 --- a/articles/quickstart-microsoft-provider-format.md +++ b/articles/quickstart-microsoft-provider-format.md @@ -354,9 +354,11 @@ def prepare_input_data(seq): ```output { - "1000000": 8, - "0010000": 1, - "0010101": 1 + "counter": { + "1000000": 8, + "0010000": 1, + "0010101": 1 + } } ``` From dc981d84bba1cc5b1d65fbab78e4bd54e0d8c4b9 Mon Sep 17 00:00:00 2001 From: Alexandre Papin Date: Thu, 6 Aug 2026 09:58:38 +0200 Subject: [PATCH 2/2] replace device with QPU for consistency --- articles/quickstart-microsoft-provider-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/quickstart-microsoft-provider-format.md b/articles/quickstart-microsoft-provider-format.md index cbb88e0ce..6201abda9 100644 --- a/articles/quickstart-microsoft-provider-format.md +++ b/articles/quickstart-microsoft-provider-format.md @@ -258,7 +258,7 @@ To create an arbitrary layout, choose one of the following options: "q5": (-8, 5), } - reg = Register(qubits).with_automatic_layout(device) + reg = Register(qubits).with_automatic_layout(QPU) ``` - To manually define a layout to create your register, see the [Pulser documentation](https://docs.pasqal.com/pulser/tutorials/reg_layouts/#Arbitrary-Layouts).