Home
last modified time | relevance | path

Searched refs:x_type (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp256 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
261 if (!_.GetMatrixTypeInfo(x_type, &num_rows, &num_cols, &col_type, in ValidateExtInst()
291 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
292 if (result_type != x_type) { in ValidateExtInst()
307 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
310 if (x_type != result_type) { in ValidateExtInst()
345 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
346 if (x_type != result_types[0]) { in ValidateExtInst()
362 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
365 if (x_type != result_type) { in ValidateExtInst()
[all …]
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp256 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
261 if (!_.GetMatrixTypeInfo(x_type, &num_rows, &num_cols, &col_type, in ValidateExtInst()
291 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
292 if (result_type != x_type) { in ValidateExtInst()
307 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
310 if (x_type != result_type) { in ValidateExtInst()
345 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
346 if (x_type != result_types[0]) { in ValidateExtInst()
362 const uint32_t x_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
365 if (x_type != result_type) { in ValidateExtInst()
[all …]
/external/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp4030 const glsl_type *x_type, const glsl_type *y_type) in UNOP()
4032 return binop(avail, ir_binop_mod, x_type, x_type, y_type); in UNOP()
4052 const glsl_type *x_type, const glsl_type *y_type) in _min() argument
4054 return binop(avail, ir_binop_min, x_type, x_type, y_type); in _min()
4059 const glsl_type *x_type, const glsl_type *y_type) in _max() argument
4061 return binop(avail, ir_binop_max, x_type, x_type, y_type); in _max()
4114 …lder::_step(builtin_available_predicate avail, const glsl_type *edge_type, const glsl_type *x_type) in _step() argument
4117 ir_variable *x = in_var(x_type, "x"); in _step()
4118 MAKE_SIG(x_type, avail, 2, edge, x); in _step()
4120 ir_variable *t = body.make_temp(x_type, "t"); in _step()
[all …]
/external/tensorflow/tensorflow/cc/gradients/
Dmath_grad_test.cc98 DataType x_type = DataTypeToEnum<X_T>::v(); in TestCWiseGrad() local
100 auto x = Placeholder(scope_, x_type, Placeholder::Shape(shape)); in TestCWiseGrad()
101 Tensor x_data(x_type, shape); in TestCWiseGrad()