module Tensorflow::Bitwise

Public Class Methods

bitwise_and(x, y) click to toggle source
# File lib/tensorflow/ops/bitwise.rb, line 4
def bitwise_and(x, y)
  RawOps.bitwise_and(x, y)
end
bitwise_or(x, y) click to toggle source
# File lib/tensorflow/ops/bitwise.rb, line 8
def bitwise_or(x, y)
  RawOps.bitwise_or(x, y)
end
bitwise_xor(x, y) click to toggle source
# File lib/tensorflow/ops/bitwise.rb, line 12
def bitwise_xor(x, y)
  RawOps.bitwise_xor(x, y)
end
invert(x) click to toggle source
# File lib/tensorflow/ops/bitwise.rb, line 16
def invert(x)
  RawOps.invert(x: x)
end
left_shift(x, y) click to toggle source
# File lib/tensorflow/ops/bitwise.rb, line 20
def left_shift(x, y)
  RawOps.left_shift(x, y)
end
right_shift(x, y) click to toggle source
# File lib/tensorflow/ops/bitwise.rb, line 24
def right_shift(x, y)
  RawOps.right_shift(x, y)
end