Home
last modified time | relevance | path

Searched refs:IsVariable (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/python/util/
Dutil.h180 bool IsVariable(PyObject* o);
Dutil_wrapper.cc303 bool result = tensorflow::swig::IsVariable(o.ptr()); in PYBIND11_MODULE()
Dutil.cc951 bool IsVariable(PyObject* o) { return IsVariableHelper(o) == 1; } in IsVariable() function
/external/tensorflow/tensorflow/core/graph/
Dgraph.h174 bool IsVariable() const { return class_ == NC_VARIABLE; } in IsVariable() function
861 inline bool IsVariable(const Node* node) { return node->IsVariable(); } in IsVariable() function
Dcostmodel.cc451 if (IsConstant(n) || IsVariable(n)) { in TimeEstimateForNode()
/external/tensorflow/tensorflow/core/transforms/utils/
Dop_cat_helper.cc139 return dialect_->IsConstant(op) || dialect_->IsVariable(op) || in IsPersistent()
/external/tensorflow/tensorflow/core/grappler/
Dgrappler_item.cc99 if (IsVariable(*node)) { in MainVariables()
Dop_types.cc651 bool IsVariable(const NodeDef& node) { in IsVariable() function
676 return IsConstant(node) || IsVariable(node) || IsHostConstant(node); in IsPersistent()
Dop_types.h206 bool IsVariable(const NodeDef& node);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp2841 bool IsVariable = Name[16] == 'v'; in UpgradeIntrinsicCall() local
2848 if (IsVariable && Name[17] != '.') { in UpgradeIntrinsicCall()
2892 IsVariable ? Intrinsic::x86_avx512_psllv_d_512 : in UpgradeIntrinsicCall()
2896 IsVariable ? Intrinsic::x86_avx512_psllv_q_512 : in UpgradeIntrinsicCall()
2909 bool IsVariable = Name[16] == 'v'; in UpgradeIntrinsicCall() local
2916 if (IsVariable && Name[17] != '.') { in UpgradeIntrinsicCall()
2960 IsVariable ? Intrinsic::x86_avx512_psrlv_d_512 : in UpgradeIntrinsicCall()
2964 IsVariable ? Intrinsic::x86_avx512_psrlv_q_512 : in UpgradeIntrinsicCall()
2977 bool IsVariable = Name[16] == 'v'; in UpgradeIntrinsicCall() local
2984 if (IsVariable && Name[17] != '.') { in UpgradeIntrinsicCall()
[all …]
/external/deqp-deps/SPIRV-Tools/source/diff/
Ddiff.cpp435 bool IsVariable(const IdInstructions& id_to, uint32_t pointer_id);
1705 if (IsVariable(src_id_to_, src_pointer_id) && in MatchVariablesUsedByMatchedInstructions()
1706 IsVariable(dst_id_to_, dst_pointer_id) && in MatchVariablesUsedByMatchedInstructions()
1848 bool Differ::IsVariable(const IdInstructions& id_to, uint32_t pointer_id) { in IsVariable() function in spvtools::diff::__anon2bc90e1b0111::Differ
/external/swiftshader/third_party/SPIRV-Tools/source/diff/
Ddiff.cpp436 bool IsVariable(const IdInstructions& id_to, uint32_t pointer_id);
1708 if (IsVariable(src_id_to_, src_pointer_id) && in MatchVariablesUsedByMatchedInstructions()
1709 IsVariable(dst_id_to_, dst_pointer_id) && in MatchVariablesUsedByMatchedInstructions()
1852 bool Differ::IsVariable(const IdInstructions& id_to, uint32_t pointer_id) { in IsVariable() function in spvtools::diff::__anon226ed7550111::Differ
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/diff/
Ddiff.cpp509 bool IsVariable(const IdInstructions& id_to, uint32_t pointer_id);
1803 if (IsVariable(src_id_to_, src_pointer_id) && in MatchVariablesUsedByMatchedInstructions()
1804 IsVariable(dst_id_to_, dst_pointer_id) && in MatchVariablesUsedByMatchedInstructions()
1947 bool Differ::IsVariable(const IdInstructions& id_to, uint32_t pointer_id) { in IsVariable() function in spvtools::diff::__anon3efb07680111::Differ
/external/tensorflow/tensorflow/core/grappler/optimizers/
Ddependency_optimizer.cc84 if (IsVariable(*input) || IsRecv(*input)) { in SafeToRemoveIdentity()
Dauto_mixed_precision.cc2121 if (to_f16 && !IsConstant(*src.node) && !IsVariable(*src.node) && in InsertCastNodeAtFanout()
/external/tensorflow/tensorflow/tools/def_file_filter/
Dsymbols_pybind.txt13 tensorflow::swig::IsVariable
/external/tensorflow/tensorflow/python/eager/
Dbackprop.py741 if _pywrap_utils.IsTensor(obj) or _pywrap_utils.IsVariable(obj):
/external/tensorflow/tensorflow/core/ir/
Dtf_op_names.cc963 bool TFGraphDialect::IsVariable(TFOp op) const { in IsVariable() function in mlir::tfg::TFGraphDialect
Dtf_op_names.inc185 bool IsVariable(TFOp op) const;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp23268 static unsigned getTargetVShiftUniformOpcode(unsigned Opc, bool IsVariable) { in getTargetVShiftUniformOpcode() argument
23273 return IsVariable ? X86ISD::VSHL : X86ISD::VSHLI; in getTargetVShiftUniformOpcode()
23277 return IsVariable ? X86ISD::VSRL : X86ISD::VSRLI; in getTargetVShiftUniformOpcode()
23281 return IsVariable ? X86ISD::VSRA : X86ISD::VSRAI; in getTargetVShiftUniformOpcode()