Skip to content

Commit 2e61d5b

Browse files
authored
fix: GateModelQuantumTaskResults field (#96)
1 parent 683aeb5 commit 2e61d5b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Braket"
22
uuid = "19504a0f-b47d-4348-9127-acc6cc69ef67"
33
authors = ["Katharine Hyatt <hyatkath@amazon.com>"]
4-
version = "0.9.2"
4+
version = "0.9.3"
55

66
[deps]
77
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"

PyBraket/Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PyBraket"
22
uuid = "e85266a6-1825-490b-a80e-9b9469c53660"
33
authors = ["Katharine Hyatt <hyatkath@amazon.com>"]
4-
version = "0.9.2"
4+
version = "0.9.3"
55

66
[deps]
77
Braket = "19504a0f-b47d-4348-9127-acc6cc69ef67"
@@ -14,7 +14,7 @@ StructTypes = "856f2bd8-1eba-4b0a-8007-ebc267875bd4"
1414

1515
[compat]
1616
Aqua = "=0.8"
17-
Braket = "=0.9.2"
17+
Braket = "=0.9.3"
1818
CondaPkg = "=0.2.23"
1919
DataStructures = "=0.18.20"
2020
LinearAlgebra = "1.6"

src/local_simulator.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ function simulate(d::LocalSimulator, task_specs::Vector{T}, args...; shots::Int=
138138
end
139139
end
140140
@debug "batch size is $(length(task_specs)). Time to run internally: $(stats.time). GC time: $(stats.gctime)."
141-
return LocalQuantumTaskBatch([local_result.result.task_metadata.id for local_result in results], results)
141+
return LocalQuantumTaskBatch([local_result.task_metadata.id for local_result in results], results)
142142
end
143143
(d::LocalSimulator)(args...; kwargs...) = simulate(d, args...; kwargs...)
144144

0 commit comments

Comments
 (0)