Skip to content
#

parallel

Here are 1,318 public repositories matching this topic...

LightGBM
numba
c200chromebook
c200chromebook commented Apr 14, 2021

Consider the below code. Numpy will happily reshape using -1 to fill in any missing dimension, numba/cuda will not. Please mirror numpy behavior.

import numpy as np
import numba as nb
from numba import cuda
sixty_four = np.zeros(64)

blocks_of_thirty_two = sixty_four.reshape(-1,32)
nb_sixty_four = cuda.to_device(sixty_four)
nb_sixty_four.reshape(-1, 32)
mikegray
mikegray commented Jun 13, 2019

Version of Singularity:

3.0.3

Expected behavior

Some progress or update information during the creation of the SIF file.

Actual behavior

During "Creating SIF file..." step, the console does not produce any visible output for the user - but does create the resulting file eventually.

Steps to reproduce behavior

I was executing a few “larger” builds through the bui

sorry-cypress

Improve this page

Add a description, image, and links to the parallel topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the parallel topic, visit your repo's landing page and select "manage topics."

Learn more