"test/magic_number_division.cpp" did not exist on "19c5d6e651d00d15b3909bf1ba44bf59df7f29cf"
Commit 24aa6876 authored by Manupa Karunaratne's avatar Manupa Karunaratne
Browse files

* further clang-format

parent 59a53257
......@@ -202,7 +202,7 @@ struct mlir_logger
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(mlir_logger&& other) noexcept
......
......@@ -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 bias = mm->add_instruction(migraphx::make_op("add"), scale, zero);
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);
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