Skip to content

Commit

Permalink
fix: run clang formatter
Browse files Browse the repository at this point in the history
Signed-off-by: Tim <[email protected]>
  • Loading branch information
yitchen-tim committed Feb 7, 2025
1 parent 67d5239 commit db6311c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#include "common/BraketExecutor.h"
#include "common/BraketServerHelper.h"

#include <aws/braket/model/Association.h>
#include <aws/braket/model/AssociationType.h>
#include <aws/braket/model/CreateQuantumTaskRequest.h>
#include <aws/braket/model/GetQuantumTaskRequest.h>
#include <aws/braket/model/QuantumTaskStatus.h>
#include <aws/braket/model/Association.h>
#include <aws/braket/model/AssociationType.h>

#include <aws/s3-crt/model/CreateBucketRequest.h>
#include <aws/s3-crt/model/GetObjectRequest.h>
Expand Down Expand Up @@ -102,8 +102,7 @@ void tryCreateBucket(Aws::S3Crt::S3CrtClient &client, std::string const &region,

namespace cudaq {
BraketExecutor::BraketExecutor()
: api(options),
jobToken(std::getenv("AMZN_BRAKET_JOB_TOKEN")),
: api(options), jobToken(std::getenv("AMZN_BRAKET_JOB_TOKEN")),
reservationArn(std::getenv("AMZN_BRAKET_RESERVATION_TIME_WINDOW_ARN")) {}

/// @brief Set the server helper
Expand Down Expand Up @@ -198,7 +197,8 @@ BraketExecutor::execute(std::vector<KernelExecution> &codesToExecute,
if (reservationArn) {
Aws::Braket::Model::Association assoc;
assoc.SetArn(reservationArn);
assoc.SetType(Aws::Braket::Model::AssociationType::RESERVATION_TIME_WINDOW_ARN);
assoc.SetType(
Aws::Braket::Model::AssociationType::RESERVATION_TIME_WINDOW_ARN);
req.AddAssociations(std::move(assoc));
}

Expand Down

0 comments on commit db6311c

Please sign in to comment.