Searched refs:EnvType (Results 1 – 11 of 11) sorted by relevance
/third_party/mindspore/mindspore/core/ir/ |
D | dtype.h | 168 class MS_CORE_API EnvType : public Object { 170 EnvType() : Object(kObjectTypeEnvType) {} in EnvType() function 171 ~EnvType() override = default; 172 MS_DECLARE_PARENT(EnvType, Object) in MS_DECLARE_PARENT() argument 174 TypePtr DeepCopy() const override { return std::make_shared<EnvType>(); } in MS_DECLARE_PARENT() 178 using EnvTypePtr = std::shared_ptr<EnvType>; 255 inline const TypePtr kTypeEnv = std::make_shared<EnvType>();
|
D | dtype_extends.cc | 279 {"EnvType", std::make_shared<EnvType>()}, in GetTypeByFullString()
|
/third_party/mindspore/mindspore/common/ |
D | dtype.py | 100 env_type = typing.EnvType() 115 env_type_type = typing.EnvType
|
/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/ |
D | dtype_py.cc | 164 (void)py::class_<EnvType, Type, std::shared_ptr<EnvType>>(m_sub, "EnvType").def(py::init()); in __anondf3c551b0102()
|
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/ |
D | validator.cc | 79 if (ptrType->isa<EnvType>()) { in CheckAbstractScalar()
|
/third_party/mindspore/tests/ut/cpp/pipeline/static_analysis/ |
D | prim_test.cc | 388 AbstractBasePtr exp = std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in TEST_F() 408 AbstractBasePtr exp = std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in TEST_F() 438 AbstractBasePtr exp = std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in TEST_F()
|
/third_party/mindspore/tests/ut/cpp/utils/ |
D | lenet_specialize.txt | 18 , %para16 : EnvType # %para16@18
|
/third_party/mindspore/mindspore/core/utils/ |
D | symbolic.h | 114 …ake_shared<abstract::AbstractScalar>(shared_from_base<EnvInstance>(), std::make_shared<EnvType>()); in ToAbstract()
|
/third_party/mindspore/mindspore/core/abstract/ |
D | prim_others.cc | 91 return std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in InferImplEnvSetItem() 98 return std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in InferImplEnvAdd()
|
D | utils.cc | 181 return std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in SensitivityTransform()
|
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/ |
D | incorporate_getitem.h | 292 …f (abs_tuple[0]->isa<abstract::AbstractScalar>() && abs_tuple[0]->GetTypeTrack()->isa<EnvType>()) { in ShouldTransform()
|