Job request support for pennylane#8
Conversation
|
@annkay108 |
|
|
||
|
|
||
| @dataclass | ||
| class PennylaneJobRequest(JobRequest): |
There was a problem hiding this comment.
@Bmete7
The PennylaneJobRequest is same as CircuitJobRequest. Why do we need a another class type for it? isn't the Pennylane at the end submit a circuit?
If there is any additional arguments needed that can be added.
There was a problem hiding this comment.
one small comment on the topic @mnfarooqi @annkay108 :
We are planning to change the format of the submitted circuit with the new release of PennylaneAdapter. Therefore, we decided to create a separate class for it, such that the transition to the new format would be smoother.
There was a problem hiding this comment.
For any new format, only the value of circuit_format needs to be changed. The circuit itself needs to be serialised for communication purposes, so the circuit type remains the same, i.e. string or stream of bytes.
No description provided.