BREAKING CHANGE: Change `tfp.utils.DeferredTensor` argument order to `pretransformed_input`, `transform_fn` for consistency with
`TransformedVariable` (itself being argument-order consistent with `tf.Variable`).

PiperOrigin-RevId: 270792584
diff --git a/tensorflow/python/ops/linalg/linear_operator_util.py b/tensorflow/python/ops/linalg/linear_operator_util.py
index 077568a..e66d143 100644
--- a/tensorflow/python/ops/linalg/linear_operator_util.py
+++ b/tensorflow/python/ops/linalg/linear_operator_util.py
@@ -90,7 +90,7 @@
   tf.is_tensor(y)
   # ==> True
 
-  x = tfp.util.DeferredTensor(lambda x: x, 13.37)
+  x = tfp.util.DeferredTensor(13.37, lambda x: x)
   y = convert_nonref_to_tensor(x)
   x is y
   # ==> True