Commit 77cc9a7d authored by Shucai Xiao's avatar Shucai Xiao
Browse files

code cleanup

parent 7cd3eb23
......@@ -18,7 +18,7 @@ add_library(migraphx
generate.cpp
instruction.cpp
program.cpp
quantize.cpp
quantization.cpp
shape.cpp
schedule.cpp
pass_manager.cpp
......
#ifndef MIGRAPHX_GUARD_RTGLIB_QUANTIZE_HPP
#define MIGRAPHX_GUARD_RTGLIB_QUANTIZE_HPP
#ifndef MIGRAPHX_GUARD_RTGLIB_QUANTIZATION_HPP
#define MIGRAPHX_GUARD_RTGLIB_QUANTIZATION_HPP
#include <string>
#include <vector>
......
......@@ -2,7 +2,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <migraphx/program.hpp>
#include <migraphx/quantize.hpp>
#include <migraphx/quantization.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/cpu/target.hpp>
#include <migraphx/stringutils.hpp>
......
#include <migraphx/quantize.hpp>
#include <migraphx/quantization.hpp>
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/iterator_for.hpp>
......@@ -108,7 +108,7 @@ void quantize(program& prog, const std::vector<std::string>& ins_names)
}
prog.replace_instruction(ins, op, converted_inputs);
// instruction::replace(ins, op, compute_shape(op, converted_inputs), converted_inputs);
//instruction::replace(ins, op, compute_shape(op, converted_inputs), converted_inputs);
}
}
}
......
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