Skip to content

Commit 159284a

Browse files
Addressing comments from #1200 (#1215)
1 parent ca28499 commit 159284a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

onedal/datatypes/_data_conversion.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ def _apply_and_pass(func, *args):
3838
def from_table(*args):
3939
return _apply_and_pass(_backend.from_table, *args)
4040

41-
# TODO:
42-
# refactoring.
43-
4441

4542
def convert_one_to_table(arg):
4643
if dpctl_available:

onedal/datatypes/tests/test_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def test_input_format_f_contiguous_pandas(queue, dtype):
145145

146146

147147
@pytest.mark.skipif(not dpctl_available,
148-
reason="requires dpctl=0.14")
148+
reason="requires dpctl>=0.14")
149149
@pytest.mark.parametrize('queue', get_queues('cpu,gpu'))
150150
@pytest.mark.parametrize('dtype', [np.float32, np.float64, np.int32, np.int64])
151151
def test_input_format_c_contiguous_dpctl(queue, dtype):
@@ -171,7 +171,7 @@ def test_input_format_c_contiguous_dpctl(queue, dtype):
171171

172172

173173
@pytest.mark.skipif(not dpctl_available,
174-
reason="requires dpctl=0.14")
174+
reason="requires dpctl>=0.14")
175175
@pytest.mark.parametrize('queue', get_queues('cpu,gpu'))
176176
@pytest.mark.parametrize('dtype', [np.float32, np.float64, np.int32, np.int64])
177177
def test_input_format_f_contiguous_dpctl(queue, dtype):

0 commit comments

Comments
 (0)