Home
last modified time | relevance | path

Searched refs:original_type (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/contrib/tensor_forest/python/ops/
Ddata_ops.py91 self.original_type = ''
96 self.original_type,
135 col_spec.original_type = DATA_CATEGORICAL
144 col_spec.original_type = DTYPE_TO_FTYPE[data[k].dtype]
168 col_spec.original_type = DTYPE_TO_FTYPE[data.dtype]
176 col_spec.original_type = DTYPE_TO_FTYPE[data.dtype]
/external/v8/src/compiler/
Dtype-narrowing-reducer.cc73 Type original_type = NodeProperties::GetType(node); in Reduce() local
74 Type restricted = Type::Intersect(new_type, original_type, zone()); in Reduce()
75 if (!original_type.Is(restricted)) { in Reduce()
Descape-analysis-reducer.cc46 Type const original_type = NodeProperties::GetType(original); in ReplaceNode() local
47 if (replacement_type.Is(original_type)) { in ReplaceNode()
64 Type::Intersect(original_type, replacement_type, jsgraph()->zone())); in ReplaceNode()
66 jsgraph()->common()->TypeGuard(original_type)); in ReplaceNode()
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
Ddata_spec.h51 int original_type() const { return original_type_; } in original_type() function
89 feature_to_type_.push_back(col.original_type()); in ParseFromString()
Dtree_utils.cc42 return static_cast<DataColumnTypes>(spec.sparse(column_num).original_type()); in FindSparseFeatureSpec()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dtype_manager.cpp877 void TypeManager::ReplaceType(Type* new_type, Type* original_type) { in ReplaceType() argument
878 assert(original_type->kind() == new_type->kind() && in ReplaceType()
889 if (element_type == original_type) { in ReplaceType()
895 if (element_type == original_type) { in ReplaceType()
902 if (member_type == original_type) { in ReplaceType()
909 if (pointee_type == original_type) { in ReplaceType()
916 if (return_type == original_type) { in ReplaceType()
922 if (param_type == original_type) { in ReplaceType()
Dtype_manager.h199 void ReplaceType(Type* new_type, Type* original_type);
Dcopy_prop_arrays.cpp721 analysis::Type* original_type = type_mgr->GetType(original_type_id); in GenerateCopy() local
724 if (const analysis::Array* original_array_type = original_type->AsArray()) { in GenerateCopy()
748 original_type->AsStruct()) { in GenerateCopy()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dtype_manager.cpp874 void TypeManager::ReplaceType(Type* new_type, Type* original_type) { in ReplaceType() argument
875 assert(original_type->kind() == new_type->kind() && in ReplaceType()
886 if (element_type == original_type) { in ReplaceType()
892 if (element_type == original_type) { in ReplaceType()
899 if (member_type == original_type) { in ReplaceType()
906 if (pointee_type == original_type) { in ReplaceType()
913 if (return_type == original_type) { in ReplaceType()
919 if (param_type == original_type) { in ReplaceType()
Dtype_manager.h199 void ReplaceType(Type* new_type, Type* original_type);
Dcopy_prop_arrays.cpp721 analysis::Type* original_type = type_mgr->GetType(original_type_id); in GenerateCopy() local
724 if (const analysis::Array* original_array_type = original_type->AsArray()) { in GenerateCopy()
748 original_type->AsStruct()) { in GenerateCopy()
/external/tensorflow/tensorflow/compiler/xla/service/
Dbfloat16_normalization.cc104 auto original_type = hlo->shape().element_type(); in ChangeOutputTypeThenInsertConvertBack() local
106 return InsertConvertAfterOutput(hlo, original_type, computation); in ChangeOutputTypeThenInsertConvertBack()
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
Dinput_data.cc151 *type = input_spec_.sparse(0).original_type(); in RandomSample()
/external/python/cpython3/Lib/importlib/
Dutil.py235 original_type = self.__spec__.loader_state['__class__']