Home
last modified time | relevance | path

Searched refs:p_val (Results 1 – 9 of 9) sorted by relevance

/external/autotest/site_utils/
Dperf_compare.py336 for key, p_val in p_values:
338 if float(p_val) <= 0.05:
339 small_p_value.append((benchmark, key, p_val))
340 elif math.isnan(float(p_val)):
341 nan_p_value.append((benchmark, key, p_val))
/external/llvm-project/polly/test/Isl/CodeGen/
Dpartial_write_mapped_scalar.ll44 ; CHECK-NEXT: %p_val = fadd double 2.100000e+01, 2.100000e+01
53 ; CHECK-NEXT: store double %p_val, double* %polly.access.A
Dpartial_write_mapped_vector.ll45 ; CHECK-NEXT: %p_val = fadd double 2.100000e+01, 2.100000e+01
54 ; CHECK-NEXT: store double %p_val, double* %polly.access.A
Dpartial_write_mapped_scalar_subregion.ll61 ; CHECK-NEXT: store double %p_val, double* %polly.access.A
/external/tensorflow/tensorflow/python/kernel_tests/
Dlu_op_test.py152 p_val = self.evaluate([p])
154 self.assertNotAllClose(np.arange(3), p_val)
163 p_val = self.evaluate([p])
165 self.assertNotAllClose(np.arange(3), p_val)
/external/tensorflow/tensorflow/python/keras/
Dbackend_test.py1657 p_val = ops.convert_to_tensor_v2_with_dispatch([[.9, .05, .05],
1662 result = f([t_val, p_val])
1669 result = f([t_val, p_val])
1673 p_val = ops.convert_to_tensor_v2_with_dispatch([[8., 1., 1.], [0., 9., 1.],
1678 result = f([t_val, p_val])
1685 result = f([t_val, p_val])
1727 p_val = ops.convert_to_tensor_v2_with_dispatch([[.9, .05, .05],
1732 result = f([t_val, p_val])
1742 _ = f([t_val, p_val])
1745 p_val = ops.convert_to_tensor_v2_with_dispatch([[8., 1., 1.], [0., 9., 1.],
[all …]
Dlosses_test.py103 p_val = ops.convert_to_tensor_v2_with_dispatch([[.9, .05, .05],
108 result = f([t_val, p_val])
112 p_val = ops.convert_to_tensor_v2_with_dispatch([[8., 1., 1.], [0., 9., 1.],
117 result = f([t_val, p_val])
143 p_val = ops.convert_to_tensor_v2_with_dispatch([[.9, .05, .05],
148 result = f([t_val, p_val])
152 p_val = ops.convert_to_tensor_v2_with_dispatch([[8., 1., 1.], [0., 9., 1.],
157 result = f([t_val, p_val])
/external/iproute2/devlink/
Ddevlink.c476 static int strtouint32_t(const char *str, uint32_t *p_val) in strtouint32_t() argument
486 *p_val = val; in strtouint32_t()
490 static int strtouint16_t(const char *str, uint16_t *p_val) in strtouint16_t() argument
500 *p_val = val; in strtouint16_t()
633 static int dl_argv_uint32_t(struct dl *dl, uint32_t *p_val) in dl_argv_uint32_t() argument
643 err = strtouint32_t(str, p_val); in dl_argv_uint32_t()
651 static int dl_argv_uint16_t(struct dl *dl, uint16_t *p_val) in dl_argv_uint16_t() argument
661 err = strtouint16_t(str, p_val); in dl_argv_uint16_t()
/external/tensorflow/tensorflow/python/client/
Dsession_test.py1033 p_val, q_val = s.run([p, q])
1035 self.assertAllEqual([[1.0, 1.0]], p_val)