Searched refs:next_acc (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_register_allocate.c | 206 uint32_t next_acc; member 226 int acc_off = (vc4_ra->next_acc + i) % ACC_COUNT; in vc4_ra_select_callback() 230 vc4_ra->next_acc = acc_off + 1; in vc4_ra_select_callback() 262 .next_acc = 0, in vc4_register_allocate()
|
/external/llvm/test/Transforms/Scalarizer/ |
D | basic.ll | 420 ; CHECK: %this_acc.i0 = phi float [ %acc.i0, %entry ], [ %next_acc.i0, %loop ] 421 ; CHECK: %this_acc.i1 = phi float [ %acc.i1, %entry ], [ %next_acc.i1, %loop ] 422 ; CHECK: %this_acc.i2 = phi float [ %acc.i2, %entry ], [ %next_acc.i2, %loop ] 423 ; CHECK: %this_acc.i3 = phi float [ %acc.i3, %entry ], [ %next_acc.i3, %loop ] 429 ; CHECK: ret <4 x float> %next_acc 434 %this_acc = phi <4 x float> [ %acc, %entry ], [ %next_acc, %loop ] 437 %next_acc = fadd <4 x float> %this_acc, %foo 443 ret <4 x float> %next_acc
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Scalarizer/ |
D | basic.ll | 420 ; CHECK: %this_acc.i0 = phi float [ %acc.i0, %entry ], [ %next_acc.i0, %loop ] 421 ; CHECK: %this_acc.i1 = phi float [ %acc.i1, %entry ], [ %next_acc.i1, %loop ] 422 ; CHECK: %this_acc.i2 = phi float [ %acc.i2, %entry ], [ %next_acc.i2, %loop ] 423 ; CHECK: %this_acc.i3 = phi float [ %acc.i3, %entry ], [ %next_acc.i3, %loop ] 429 ; CHECK: ret <4 x float> %next_acc 434 %this_acc = phi <4 x float> [ %acc, %entry ], [ %next_acc, %loop ] 437 %next_acc = fadd <4 x float> %this_acc, %foo 443 ret <4 x float> %next_acc
|
/external/tensorflow/tensorflow/python/ops/ |
D | control_flow_ops.py | 2730 next_acc = _NextIteration(add_acc) 2731 merge_acc.op._update_input(1, next_acc) # pylint: disable=protected-access 2828 next_acc = [_NextIteration(x) for x in acc_indexed_slices] 2829 for xm, xn in zip(merge_acc, next_acc):
|