Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Is it okay to use python operators for tensorflow tensors?
TL;DR
Is (a and b)
equivalent to tf.logical_and(a, b)
in terms of optimization and performance? (a
and b
are tensorflow tensors)
Details
I use Python with Tensorflow. My priorities are
- Make the code run fast
- Make it readable.
I have working and fast code that, for my personal feeling, looks ugly:
@tf.function
# @tf.function(jit_compile=True)
def my_tf_func():
# ...
a = ... # some tensorflow tensor
b = ... # another tensorflow tensor
# currently ugly: prefix notation with tf.logical_and
c = tf.math.count_nonzero(tf.logical_and(a, b))
# more readable alternative: infix notation:
c = tf.math.count_nonzero(a and b)
# ...
The code that uses prefix notation works and runs fast, but I don't think it's very readable due to the prefix notation (it's called prefix notation, because the name of the operation logical_and
comes before the operands a
and b
).
Can I use infix notation, i.e. the alternative at the end of above code, with usual python operators like and
, +
, -
, or ==
and still get all the benefits of tensorflow on the GPU and compile it with XLA support? Will it compile to the same result?
The same question applies to unary operators like not
vs. tf.logical_not(...)
.
This question was crossposted at
https://stackoverflow.com/questions/77045818/is-it-okay-to-use-python-operators-for-tensorflow-tensors .
1 answer
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
daniel_s | (no comment) | Sep 6, 2023 at 08:22 |
No, you can't use and
for this.
In Python, a and b
always, always, always means b if a else a
. It cannot be overridden and cannot mean anything else. Likewise not
, and any other boolean keywords, as opposed to operators.
You could instead write a & b
, which should mean the same thing as tf.logical_and(a, b)
among TensorFlow tensors, per the documentation.
The documentation for logical_not
in TensorFlow doesn't indicate an operator synonym, but in other Python libraries the ~
operator can be used for this purpose.
1 comment thread