Home
last modified time | relevance | path

Searched refs:EnvType (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore/core/ir/
Ddtype.h168 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>();
Ddtype_extends.cc279 {"EnvType", std::make_shared<EnvType>()}, in GetTypeByFullString()
/third_party/mindspore/mindspore/common/
Ddtype.py100 env_type = typing.EnvType()
115 env_type_type = typing.EnvType
/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/
Ddtype_py.cc164 (void)py::class_<EnvType, Type, std::shared_ptr<EnvType>>(m_sub, "EnvType").def(py::init()); in __anondf3c551b0102()
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/
Dvalidator.cc79 if (ptrType->isa<EnvType>()) { in CheckAbstractScalar()
/third_party/mindspore/tests/ut/cpp/pipeline/static_analysis/
Dprim_test.cc388 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/
Dlenet_specialize.txt18 , %para16 : EnvType # %para16@18
/third_party/mindspore/mindspore/core/utils/
Dsymbolic.h114 …ake_shared<abstract::AbstractScalar>(shared_from_base<EnvInstance>(), std::make_shared<EnvType>()); in ToAbstract()
/third_party/mindspore/mindspore/core/abstract/
Dprim_others.cc91 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()
Dutils.cc181 return std::make_shared<AbstractScalar>(kAnyValue, std::make_shared<EnvType>()); in SensitivityTransform()
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/
Dincorporate_getitem.h292 …f (abs_tuple[0]->isa<abstract::AbstractScalar>() && abs_tuple[0]->GetTypeTrack()->isa<EnvType>()) { in ShouldTransform()