概述
tf.bitwise.bitwise_and(x,y,name=None)计算x和y的按位与运算
x,y为张量,类型int8,int16,int32,int64,uint8,uint16
name:操作名称
import tensorflow as tf
x = tf.constant(3)
y = tf.constant(2)
b_and = tf.bitwise.bitwise_and(x,y,name="and")
with tf.Session() as sess:
result = sess.run(b_and)
print(result) #2
最后
以上就是忐忑玉米为你收集整理的tf.bitwise.bitwise_and 函数的全部内容,希望文章能够帮你解决tf.bitwise.bitwise_and 函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复