Commit 24aa6876 authored by Manupa Karunaratne's avatar Manupa Karunaratne
Browse files

* further clang-format

parent 59a53257
...@@ -202,7 +202,7 @@ struct mlir_logger ...@@ -202,7 +202,7 @@ struct mlir_logger
mlirContextDetachDiagnosticHandler(ctx->get(), *id); mlirContextDetachDiagnosticHandler(ctx->get(), *id);
} }
mlir_logger(const mlir_logger& other) = delete; mlir_logger(const mlir_logger& other) = delete;
mlir_logger& operator=(const mlir_logger& other) = delete; mlir_logger& operator=(const mlir_logger& other) = delete;
mlir_logger(mlir_logger&& other) noexcept mlir_logger(mlir_logger&& other) noexcept
......
...@@ -49,7 +49,7 @@ struct gemm_softmax_gemm_relu : verify_program<gemm_softmax_gemm_relu> ...@@ -49,7 +49,7 @@ struct gemm_softmax_gemm_relu : verify_program<gemm_softmax_gemm_relu>
auto scale = mm->add_instruction(migraphx::make_op("mul"), gemm1, eight); auto scale = mm->add_instruction(migraphx::make_op("mul"), gemm1, eight);
auto bias = mm->add_instruction(migraphx::make_op("add"), scale, zero); auto bias = mm->add_instruction(migraphx::make_op("add"), scale, zero);
auto softmax = mm->add_instruction(migraphx::make_op("softmax", {{"axis", 3}}), bias); auto softmax = mm->add_instruction(migraphx::make_op("softmax", {{"axis", 3}}), bias);
auto gemm2 = mm->add_instruction(migraphx::make_op("dot"), softmax, b1); auto gemm2 = mm->add_instruction(migraphx::make_op("dot"), softmax, b1);
mm->add_instruction(migraphx::make_op("relu"), gemm2); mm->add_instruction(migraphx::make_op("relu"), gemm2);
return p; return p;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment