Skip to content

Commit

Permalink
reformat codegen_cuda.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
cblmemo committed Feb 16, 2023
1 parent 1de7625 commit 57f0193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/target/source/codegen_cuda.cc
Original file line number Diff line number Diff line change
Expand Up @@ -918,8 +918,8 @@ void CodeGenCUDA::VisitExpr_(const CallNode* op, std::ostream& os) {
if (op->args.size() == 5) {
this->stream << PrintCpAsyncAssembly(dst, dst_offset, src, src_offset, size);
} else {
this->stream << PrintPredicatedCpAsyncAssembly(dst, dst_offset, src, src_offset,
size, this->PrintExpr(op->args[5]));
this->stream << PrintPredicatedCpAsyncAssembly(dst, dst_offset, src, src_offset, size,
this->PrintExpr(op->args[5]));
}
} else if (op->op.same_as(builtin::ptx_commit_group())) {
this->stream << "__asm__ __volatile__(\"cp.async.commit_group;\");\n\n";
Expand Down

0 comments on commit 57f0193

Please sign in to comment.