Skip to content

Commit

Permalink
Calibration proto fixes (#3261)
Browse files Browse the repository at this point in the history
- Fix a comment noted by wcourtney on design document
- Fix cut-and-paster java outer classname.
  • Loading branch information
dstrain115 committed Aug 21, 2020
1 parent b38b8d1 commit dbf0bcf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cirq/google/api/v2/calibration.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "cirq/google/api/v2/program.proto";
package cirq.google.api.v2;

option java_package = "com.google.cirq.google.api.v2";
option java_outer_classname = "BatchProto";
option java_outer_classname = "FocusedCalibrationProto";
option java_multiple_files = true;

// This message represents a request to execute a custom calibration routine.
Expand Down Expand Up @@ -86,8 +86,10 @@ message CalibrationLayerResults {
string error_message = 2;

// A token identifying the calibration result.
// This could be used to tag focused circuits that use parameters
// If a token exists in the response, it can be used to tag
// focused circuits that use parameters
// derived from this calibration.
// If no token exists, then the calibration was purely diagnostic.
string token = 3;

// Results, such as gate fidelities, gate angles, etc
Expand Down

0 comments on commit dbf0bcf

Please sign in to comment.