This changes moves the remaining modules in "core/graph/..." that depend on modules in "core/common_runtime/..." to "core/common_runtime/", and creates separate fine-grained targets for each of them: * "gradients.{h.cc}" * "graph_def_builder_util.{h,cc}" * "mkl_{layout,tfconversion}_pass.{h,cc}" * "quantize_training.{h,cc}" PiperOrigin-RevId: 308841156 Change-Id: I7774e2498f465290e7addd331625bd91d90acbac
49 lines
1.9 KiB
C++
49 lines
1.9 KiB
C++
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
#include "pybind11/pybind11.h"
|
|
#include "tensorflow/core/common_runtime/quantize_training.h"
|
|
#include "tensorflow/python/lib/core/pybind11_lib.h"
|
|
#include "tensorflow/python/lib/core/pybind11_status.h"
|
|
|
|
namespace py = pybind11;
|
|
|
|
namespace tensorflow {
|
|
static PyObject* DoQuantizeTrainingOnGraphDefHelper(const string& input_graph,
|
|
int num_bits) {
|
|
string result;
|
|
// TODO(suharshs): Make the QuantizeAndDequantizeV2 configurable.
|
|
tensorflow::MaybeRaiseFromStatus(
|
|
tensorflow::DoQuantizeTrainingOnSerializedGraphDef(
|
|
input_graph, num_bits, "QuantizeAndDequantizeV2", &result));
|
|
|
|
PyObject* py_str = PyBytes_FromStringAndSize(result.data(), result.size());
|
|
if (!py_str) {
|
|
tensorflow::MaybeRaiseFromStatus(tensorflow::errors::Internal(
|
|
"Failed to generate serialized string of the rewritten graph."));
|
|
}
|
|
return py_str;
|
|
}
|
|
} // namespace tensorflow
|
|
|
|
PYBIND11_MODULE(_pywrap_quantize_training, m) {
|
|
m.def("DoQuantizeTrainingOnGraphDefHelper",
|
|
[](const py::object input_graph, int num_bits) {
|
|
return tensorflow::PyoOrThrow(
|
|
tensorflow::DoQuantizeTrainingOnGraphDefHelper(
|
|
input_graph.cast<std::string>(), num_bits));
|
|
});
|
|
};
|