Skip to content

Commit

Permalink
Fix typo in non-distributed sampler
Browse files Browse the repository at this point in the history
  • Loading branch information
dexter2206 committed Sep 8, 2023
1 parent 1da7b48 commit c7729c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions omnisolver/bruteforce/gpu/sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def sample(
grid_size,
block_size,
num_steps_per_kernel=16,
partial_diff_buff_depth=1,
partial_diff_buffer_depth=1,
dtype=np.float32,
):
"""Solve Binary Quadratic Model using exhaustive (bruteforce) search on the GPU.
Expand All @@ -49,7 +49,7 @@ def sample(
grid_size,
block_size,
num_steps_per_kernel,
partial_diff_buff_depth,
partial_diff_buffer_depth,
dtype,
).change_vartype("SPIN", inplace=False)

Expand Down Expand Up @@ -78,7 +78,7 @@ def sample(
block_size,
suffix_size,
num_steps_per_kernel,
partial_diff_buff_depth,
partial_diff_buffer_depth,
)
else:
gpu_search(
Expand Down

0 comments on commit c7729c3

Please sign in to comment.