add set default dtype, get default dtype (#26006)
* add set/get default dtyperevert-24895-update_cub
parent
586a6dd358
commit
fd0051b488
@ -0,0 +1,41 @@
|
||||
# Copyright (c) 2020 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.
|
||||
|
||||
from __future__ import print_function
|
||||
import unittest
|
||||
import numpy as np
|
||||
from paddle.framework import set_default_dtype, get_default_dtype
|
||||
import paddle
|
||||
import paddle.fluid as fluid
|
||||
from paddle.fluid.dygraph import Linear
|
||||
import paddle.fluid.core as core
|
||||
from paddle import to_variable
|
||||
|
||||
|
||||
class TestDefaultType(unittest.TestCase):
|
||||
def check_default(self):
|
||||
self.assertEqual("float32", get_default_dtype())
|
||||
|
||||
def test_api(self):
|
||||
self.check_default()
|
||||
|
||||
set_default_dtype("float64")
|
||||
self.assertEqual("float64", get_default_dtype())
|
||||
|
||||
set_default_dtype(np.int32)
|
||||
self.assertEqual("int32", get_default_dtype())
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Loading…
Reference in new issue