Searched refs:allowed_types (Results 1 – 7 of 7) sorted by relevance
/external/clang/docs/tools/ |
D | dump_ast_matchers.py | 131 def act_on_decl(declaration, comment, allowed_types): argument 202 if allowed_types and allowed_types != result_types: 244 if not allowed_types: 246 result_types = allowed_types 339 allowed_types = [] variable 345 act_on_decl(declaration, comment, allowed_types) 348 allowed_types = [] variable 353 allowed_types += [m.group(1)] 365 act_on_decl(declaration, comment, allowed_types) 368 allowed_types = [] variable
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_grad.py | 104 allowed_types = [dtypes.float32, dtypes.float64] 106 if op.inputs[0].dtype in allowed_types: 136 allowed_types = [dtypes.float16, dtypes.float32, dtypes.float64] 137 if op.inputs[0].dtype in allowed_types:
|
D | gradient_checker_v2.py | 268 allowed_types = [dtypes.float16, dtypes.bfloat16, dtypes.float32, 270 assert t.base_dtype in allowed_types, ("Cannot compute gradient for" 274 assert t2.base_dtype in allowed_types, ("Cannot compute gradient for"
|
D | gradient_checker.py | 221 allowed_types = [dtypes.float16, dtypes.bfloat16, dtypes.float32, 223 assert t.base_dtype in allowed_types, "Don't support type %s for x" % t.name 225 assert t2.base_dtype in allowed_types, "Don't support type %s for y" % t2.name
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | stateless_random_ops_test.py | 37 allowed_types = {dtypes.float32, dtypes.float64, dtypes.bfloat16} 39 allowed_types.update({dtypes.int32, dtypes.int64}) 40 return self.all_tf_types & allowed_types
|
/external/tensorflow/tensorflow/tools/compatibility/ |
D | tf_upgrade_v2.py | 1699 allowed_types = [ast.Str] 1701 allowed_types += [ast.Bytes] 1703 allowed_types += [ast.JoinedStr] 1705 allowed_types += [ast.FormattedValue] 1706 return isinstance(node, allowed_types)
|
/external/vulkan-validation-layers/layers/ |
D | stateless_validation.h | 498 … const void *next, size_t allowed_type_count, const VkStructureType *allowed_types, in validate_struct_pnext() argument 524 const VkStructureType *start = allowed_types; in validate_struct_pnext() 525 const VkStructureType *end = allowed_types + allowed_type_count; in validate_struct_pnext()
|