Skip to content

Commit

Permalink
remove k>2 limitation for testing
Browse files Browse the repository at this point in the history
See diku-dk#41 for more details
  • Loading branch information
mirt001 committed Sep 1, 2021
1 parent 4fd0c17 commit 18972ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bfast/monitor/opencl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def __init__(self,
):
k_valid = list(range(3, 11))

if k not in k_valid:
raise Exception("Current implementation can only handle the following values for k: {}".format(k_valid))
# if k not in k_valid:
# raise Exception("Current implementation can only handle the following values for k: {}".format(k_valid))

super().__init__(start_monitor,
freq,
Expand Down

0 comments on commit 18972ee

Please sign in to comment.