Merge pull request #6744 from jacquesqiao/expose-const-value
Expose const valuedel_some_in_makelist
commit
d639b13f15
@ -0,0 +1,29 @@
|
|||||||
|
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
||||||
|
|
||||||
|
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 "const_value.h"
|
||||||
|
#include "paddle/framework/operator.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace pybind {
|
||||||
|
|
||||||
|
void BindConstValue(pybind11::module& m) {
|
||||||
|
m.def("kEmptyVarName", [] { return framework::kEmptyVarName; });
|
||||||
|
m.def("kTempVarName", [] { return framework::kTempVarName; });
|
||||||
|
m.def("kGradVarSuffix", [] { return framework::kGradVarSuffix; });
|
||||||
|
m.def("kZeroVarSuffix", [] { return framework::kZeroVarSuffix; });
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace pybind
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,26 @@
|
|||||||
|
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
||||||
|
|
||||||
|
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. */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include <Python.h>
|
||||||
|
#include "paddle/platform/enforce.h"
|
||||||
|
#include "pybind11/pybind11.h"
|
||||||
|
|
||||||
|
namespace py = pybind11;
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace pybind {
|
||||||
|
extern void BindConstValue(pybind11::module& m);
|
||||||
|
} // namespace pybind
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,14 @@
|
|||||||
|
import unittest
|
||||||
|
import paddle.v2.fluid.framework as framework
|
||||||
|
|
||||||
|
|
||||||
|
class ConditionalBlock(unittest.TestCase):
|
||||||
|
def test_const_value(self):
|
||||||
|
self.assertEqual(framework.GRAD_VAR_SUFFIX, "@GRAD")
|
||||||
|
self.assertEqual(framework.TEMP_VAR_NAME, "@TEMP@")
|
||||||
|
self.assertEqual(framework.GRAD_VAR_SUFFIX, "@GRAD")
|
||||||
|
self.assertEqual(framework.ZERO_VAR_SUFFIX, "@ZERO")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
Loading…
Reference in new issue