Beispiel #1
0
 def _elwise_multiply(self, out, other, queue=None):
     return elementwise.get_multiply_kernel(
             self.context, self.dtype, other.dtype, out.dtype)
Beispiel #2
0
 def _elwise_multiply(out, a, b, queue=None):
     return elementwise.get_multiply_kernel(a.context, a.dtype, b.dtype,
                                            out.dtype)
Beispiel #3
0
 def _elwise_multiply(out, a, b, queue=None):
     return elementwise.get_multiply_kernel(
             a.context, a.dtype, b.dtype, out.dtype)
Beispiel #4
0
 def _elwise_multiply(self, out, other, queue=None):
     return elementwise.get_multiply_kernel(self.context, self.dtype,
                                            other.dtype, out.dtype)