Mit Kotak

Results 9 issues of Mit Kotak

Here's an MWE ```python >>> import numpy as np >>> import pycuda.autoinit >>> import pycuda.gpuarray as gpuarray >>> a = np.array(True) >>> b = np.array(False) >>> a_gpu = gpuarray.to_gpu(a) >>>...

bug

MWE ```python import loopy as lp import islpy as isl lp.make_kernel([isl.BasicSet("{[]:}")], []) # Works lp.make_kernel("{ []: }", []) # Fails?! ```

Here's the MWE ```python import loopy as lp import numpy as np knl = lp.make_kernel( domains = "{ [_0]: 0

Here's the MWE ```python import loopy as lp import numpy as np knl = lp.make_kernel( domains = "{ [_0]: 0

Here's the MWE ```python import loopy as lp import numpy as np knl = lp.make_kernel( domains = "{ [_0]: 0

Here's the MWE ```python >>> import pycuda.autoinit >>> import pycuda.gpuarray as gpuarray >>> import numpy as np >>> empty = np.array([]) >>> empty_gpu = gpuarray.to_gpu(empty) >>> empty + empty #...

bug

Here's the MWE ```python >>> import pycuda.autoinit >>> import pycuda.gpuarray as gpuarray >>> import numpy as np >>> empty_array = np.array([]) >>> empty_array_gpu = gpuarray.to_gpu(empty_array) >>> neg_empty_array = -empty_array #...

bug

Here's the MWE ```python >>> import pycuda.autoinit >>> import pycuda.gpuarray as gpuarray >>> import numpy as np >>> empty_array = np.array([]) >>> empty_array_gpu = gpuarray.to_gpu(empty_array) >>> result_array = empty_array +...

bug

Here's the MWE ```python >>> import pycuda.autoinit >>> import pycuda.gpuarray as gpuarray >>> import numpy as np >>> c = 42.0 >>> zero_array = np.zeros_like(c) # array(0.) >>> zero_array_gpu =...

bug