def test_scatter_update(): a = tf.Variable(initial_value=[2, 5, -4, 0]) b = tf.scatter_update(a, [2,2], [9,100]) return b