You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.1 KiB
56 lines
2.1 KiB
/* Copyright (c) 2018 PaddlePaddle 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 "paddle/fluid/pybind/imperative.h"
|
|
#include "paddle/fluid/framework/block_desc.h"
|
|
#include "paddle/fluid/imperative/tracer.h"
|
|
#include "paddle/fluid/imperative/type_defs.h"
|
|
|
|
namespace paddle {
|
|
namespace pybind {
|
|
|
|
// Bind Methods
|
|
void BindTracer(pybind11::module* m) {
|
|
pybind11::class_<imperative::Tracer>(*m, "Tracer", "")
|
|
.def("__init__",
|
|
[](imperative::Tracer& self, framework::BlockDesc* root_block) {
|
|
new (&self) imperative::Tracer(root_block);
|
|
})
|
|
.def("trace",
|
|
[](imperative::Tracer& self, imperative::OpBase* op,
|
|
const imperative::VarBasePtrMap& inputs,
|
|
const imperative::VarBasePtrMap& outputs,
|
|
framework::BlockDesc* block,
|
|
const platform::CPUPlace expected_place,
|
|
const bool stop_gradient = false) {
|
|
self.Trace(op, inputs, outputs, block, expected_place,
|
|
stop_gradient);
|
|
})
|
|
.def("trace",
|
|
[](imperative::Tracer& self, imperative::OpBase* op,
|
|
const imperative::VarBasePtrMap& inputs,
|
|
const imperative::VarBasePtrMap& outputs,
|
|
framework::BlockDesc* block,
|
|
const platform::CUDAPlace expected_place,
|
|
const bool stop_gradient = false) {
|
|
self.Trace(op, inputs, outputs, block, expected_place,
|
|
stop_gradient);
|
|
})
|
|
.def("py_trace", &imperative::Tracer::PyTrace,
|
|
pybind11::return_value_policy::take_ownership);
|
|
}
|
|
|
|
} // namespace pybind
|
|
} // namespace paddle
|