Skip to content

Force copy to device #635

@dionhaefner

Description

@dionhaefner

Is there a way to force Bohrium to copy an array to GPU?

I want to benchmark Bohrium against some other libraries, so I do something like this:

def prepare_inputs(np_inputs):
    bh_inputs = [bh.array(k) for k in np_inputs]
    bh.flush()
    return bh_inputs


inputs = prepare_inputs(np_inputs)
with Timer():
    run_benchmark(inputs)
    bh.flush()

But on GPU, the data is not copied during prepare_inputs, only when the data is accessed during run_benchmark. The timings I get for Bohrium are thus higher than for other libraries, which copy the data right away.

I found that the following works:

def prepare_inputs(np_inputs):
    bh_inputs = [bh.array(k) for k in np_inputs]
    for k in bh_inputs:
         tmp = k * 1
         bh.flush()
    return bh_inputs

But it feels a bit stupid.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions