"docs/en_US/vscode:/vscode.git/clone" did not exist on "7748a2d4232ec3a8d1104a1a9d9114a907d3b765"
Commit 390586c5 authored by Paul's avatar Paul
Browse files

Foramt

parent f374143f
......@@ -17,8 +17,8 @@ struct code_object_op
{
value::binary code_object{};
std::string symbol_name = "";
std::size_t global = 0;
std::size_t local = 0;
std::size_t global = 0;
std::size_t local = 0;
std::vector<shape> expected_inputs{};
shape output{};
std::int64_t output_arg = -1;
......
......@@ -23,7 +23,7 @@ struct mlir_compiler : compiler<mlir_compiler>
compiler_replace insert(code_object_op co) const
{
return [co=std::move(co)](module& m, instruction_ref ins) {
return [co = std::move(co)](module& m, instruction_ref ins) {
auto mlir = insert_mlir(m, ins, co, ins->inputs());
m.replace_instruction(ins, mlir);
};
......
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