Searched refs:NumpyArrayS32 (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | xla_client_test.py | 86 def NumpyArrayS32(*args, **kwargs): function 230 c.ShiftLeft(c.Constant(NumpyArrayS32([3])), 231 c.Constant(NumpyArrayS32([2]))) 236 c.ShiftRightArithmetic(c.Constant(NumpyArrayS32([-2])), 237 c.Constant(NumpyArrayS32([1]))) 242 c.ShiftRightLogical(c.Constant(NumpyArrayS32([-1])), 243 c.Constant(NumpyArrayS32([1]))) 338 self.s32_scalar_3 = NumpyArrayS32(3) 339 self.s32_4vector = NumpyArrayS32([10, 15, -2, 7]) 466 want = NumpyArrayS32([1, 2, 3, 4]) [all …]
|