forked from NVIDIA/cuda-quantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_photonic_gate.py
32 lines (24 loc) · 1.06 KB
/
create_photonic_gate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ============================================================================ #
# Copyright (c) 2022 - 2025 NVIDIA Corporation & Affiliates. #
# All rights reserved. #
# #
# This source code and the accompanying materials are made available under #
# the terms of the Apache License 2.0 which accompanies this distribution. #
# ============================================================================ #
#[Begin Docs]
import cudaq
cudaq.set_target("orca-photonics")
@cudaq.kernel
def kernel():
# A single qumode with 2 levels initialized to the ground / zero state.
level = 2
qumode = qudit(level)
# Apply the create gate to the qumode.
create(qumode) # |0⟩ -> |1⟩
# Measurement operator.
mz(qumode)
# Sample the qumode for 1000 shots to gather statistics.
# In this case, the results are deterministic and all return state 1.
result = cudaq.sample(kernel)
print(result)
#[End Docs]