Skip to content

Commit

Permalink
clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
qedawkins committed Aug 25, 2023
1 parent 4e09303 commit 3a2493b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ transform_dialect::MapNestedForallToGpuThreadsOp::applyToOne(
transform::TransformRewriter &rewriter, func::FuncOp target,
transform::ApplyToEachResultList &results,
transform::TransformState &state) {
FailureOr<IREE::HAL::ExecutableExportOp> maybeExportOp = getEntryPoint(target);
FailureOr<IREE::HAL::ExecutableExportOp> maybeExportOp =
getEntryPoint(target);
if (failed(maybeExportOp)) {
state.getTopLevel()->emitOpError("no IREE::HAL::ExecutableExportOp found");
return emitDefaultDefiniteFailure(target);
Expand Down Expand Up @@ -598,7 +599,8 @@ transform_dialect::VectorWarpDistributionOp::applyToOne(
transform::TransformRewriter &rewriter, func::FuncOp target,
transform::ApplyToEachResultList &results,
transform::TransformState &state) {
FailureOr<IREE::HAL::ExecutableExportOp> maybeExportOp = getEntryPoint(target);
FailureOr<IREE::HAL::ExecutableExportOp> maybeExportOp =
getEntryPoint(target);
if (failed(maybeExportOp)) {
state.getTopLevel()->emitOpError("no IREE::HAL::ExecutableExportOp found");
return emitDefaultDefiniteFailure(target);
Expand Down

0 comments on commit 3a2493b

Please sign in to comment.