-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic tests that smoked out a couple issues :)
- Loading branch information
Showing
2 changed files
with
89 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import pandas as pd | ||
import pytest | ||
|
||
import nx_cugraph as nxcg | ||
from nx_cugraph.utils import _cp_iscopied_asarray | ||
|
||
try: | ||
import cudf | ||
except ModuleNotFoundError: | ||
cudf = None | ||
|
||
|
||
data = [ | ||
{"source": [0, 1], "target": [1, 2]}, # nodes are 0, 1, 2 | ||
{"source": [0, 1], "target": [1, 3]}, # nodes are 0, 1, 3 (need renumbered!) | ||
{"source": ["a", "b"], "target": ["b", "c"]}, # nodes are 'a', 'b', 'c' | ||
] | ||
|
||
|
||
@pytest.mark.skipif("not cudf") | ||
@pytest.mark.parametrize("data", data) | ||
def test_from_cudf_edgelist(data): | ||
df = cudf.DataFrame(data) | ||
nxcg.from_pandas_edgelist(df) # Basic smoke test | ||
source = df["source"] | ||
if source.dtype == int: | ||
is_copied, src_array = _cp_iscopied_asarray(source) | ||
assert is_copied is False | ||
is_copied, src_array = _cp_iscopied_asarray(source.to_cupy()) | ||
assert is_copied is False | ||
is_copied, src_array = _cp_iscopied_asarray(source, orig_object=source) | ||
assert is_copied is False | ||
is_copied, src_array = _cp_iscopied_asarray( | ||
source.to_cupy(), orig_object=source | ||
) | ||
assert is_copied is False | ||
# to numpy | ||
is_copied, src_array = _cp_iscopied_asarray(source.to_numpy()) | ||
assert is_copied is True | ||
is_copied, src_array = _cp_iscopied_asarray( | ||
source.to_numpy(), orig_object=source | ||
) | ||
assert is_copied is True | ||
else: | ||
with pytest.raises(TypeError): | ||
_cp_iscopied_asarray(source) | ||
with pytest.raises(TypeError): | ||
_cp_iscopied_asarray(source.to_cupy()) | ||
with pytest.raises(ValueError, match="Unsupported dtype"): | ||
_cp_iscopied_asarray(source.to_numpy()) | ||
with pytest.raises(ValueError, match="Unsupported dtype"): | ||
_cp_iscopied_asarray(source.to_numpy(), orig_object=source) | ||
|
||
|
||
@pytest.mark.parametrize("data", data) | ||
def test_from_pandas_edgelist(data): | ||
df = pd.DataFrame(data) | ||
nxcg.from_pandas_edgelist(df) # Basic smoke test | ||
source = df["source"] | ||
if source.dtype == int: | ||
is_copied, src_array = _cp_iscopied_asarray(source) | ||
assert is_copied is True | ||
is_copied, src_array = _cp_iscopied_asarray(source, orig_object=source) | ||
assert is_copied is True | ||
is_copied, src_array = _cp_iscopied_asarray(source.to_numpy()) | ||
assert is_copied is True | ||
is_copied, src_array = _cp_iscopied_asarray( | ||
source.to_numpy(), orig_object=source | ||
) | ||
assert is_copied is True |