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.
Comments on Is it okay to use python operators for tensorflow tensors?
Post
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 comment thread