Home
last modified time | relevance | path

Searched refs:IsTypeInBuiltInMap (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/tests/ut/cpp/pipeline/
Dresource_test.cc40 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeInt)); in TEST_F()
41 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeInt8)); in TEST_F()
42 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeInt16)); in TEST_F()
43 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeInt32)); in TEST_F()
44 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeInt64)); in TEST_F()
46 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeFloat)); in TEST_F()
47 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeFloat16)); in TEST_F()
48 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeFloat32)); in TEST_F()
49 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeFloat64)); in TEST_F()
51 ASSERT_TRUE(true == Resource::IsTypeInBuiltInMap(kNumberTypeBool)); in TEST_F()
[all …]
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/
Dresource.h64 static bool IsTypeInBuiltInMap(const TypeId &type);
Dresource.cc287 bool Resource::IsTypeInBuiltInMap(const TypeId &type) { in IsTypeInBuiltInMap() function in mindspore::pipeline::Resource
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/
Dprim.cc988 if (pipeline::Resource::IsTypeInBuiltInMap(data_type->type_id())) { in GetResolveType()