Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
a80bd9e0
Unverified
Commit
a80bd9e0
authored
Dec 07, 2022
by
Mufei Li
Committed by
GitHub
Dec 07, 2022
Browse files
Update (#4997)
Co-authored-by:
Ubuntu
<
ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal
>
parent
f85da5f5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
tests/pytorch/mock_sparse2/test_diag.py
tests/pytorch/mock_sparse2/test_diag.py
+1
-1
tests/pytorch/mock_sparse2/test_elementwise_op_diag.py
tests/pytorch/mock_sparse2/test_elementwise_op_diag.py
+1
-1
tests/pytorch/mock_sparse2/test_elementwise_op_sp.py
tests/pytorch/mock_sparse2/test_elementwise_op_sp.py
+1
-1
tests/pytorch/mock_sparse2/test_sparse_matrix.py
tests/pytorch/mock_sparse2/test_sparse_matrix.py
+1
-1
tests/pytorch/mock_sparse2/test_transpose.py
tests/pytorch/mock_sparse2/test_transpose.py
+1
-1
tests/pytorch/mock_sparse2/test_unary_op_sp.py
tests/pytorch/mock_sparse2/test_unary_op_sp.py
+1
-1
No files found.
tests/pytorch/mock_sparse2/test_diag.py
View file @
a80bd9e0
...
@@ -4,7 +4,7 @@ import sys
...
@@ -4,7 +4,7 @@ import sys
from
dgl.mock_sparse2
import
diag
,
identity
,
DiagMatrix
from
dgl.mock_sparse2
import
diag
,
identity
,
DiagMatrix
#
FIXME(issue
#4818): Skipping tests on win.
#
TODO(
#4818): Skipping tests on win.
if
not
sys
.
platform
.
startswith
(
"linux"
):
if
not
sys
.
platform
.
startswith
(
"linux"
):
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
...
...
tests/pytorch/mock_sparse2/test_elementwise_op_diag.py
View file @
a80bd9e0
...
@@ -6,7 +6,7 @@ import torch
...
@@ -6,7 +6,7 @@ import torch
import
sys
import
sys
from
dgl.mock_sparse2
import
diag
from
dgl.mock_sparse2
import
diag
#
FIXME(issue
#4818): Skipping tests on win.
#
TODO(
#4818): Skipping tests on win.
if
not
sys
.
platform
.
startswith
(
"linux"
):
if
not
sys
.
platform
.
startswith
(
"linux"
):
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
...
...
tests/pytorch/mock_sparse2/test_elementwise_op_sp.py
View file @
a80bd9e0
...
@@ -7,7 +7,7 @@ import sys
...
@@ -7,7 +7,7 @@ import sys
import
dgl
import
dgl
from
dgl.mock_sparse2
import
create_from_coo
,
diag
from
dgl.mock_sparse2
import
create_from_coo
,
diag
#
FIXME(issue
#4818): Skipping tests on win.
#
TODO(
#4818): Skipping tests on win.
if
not
sys
.
platform
.
startswith
(
"linux"
):
if
not
sys
.
platform
.
startswith
(
"linux"
):
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
...
...
tests/pytorch/mock_sparse2/test_sparse_matrix.py
View file @
a80bd9e0
...
@@ -6,7 +6,7 @@ import backend as F
...
@@ -6,7 +6,7 @@ import backend as F
from
dgl.mock_sparse2
import
create_from_coo
,
create_from_csr
,
create_from_csc
,
val_like
from
dgl.mock_sparse2
import
create_from_coo
,
create_from_csr
,
create_from_csc
,
val_like
#
FIXME(issue
#4818): Skipping tests on win.
#
TODO(
#4818): Skipping tests on win.
if
not
sys
.
platform
.
startswith
(
"linux"
):
if
not
sys
.
platform
.
startswith
(
"linux"
):
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
...
...
tests/pytorch/mock_sparse2/test_transpose.py
View file @
a80bd9e0
...
@@ -6,7 +6,7 @@ from dgl.mock_sparse2 import diag, create_from_coo
...
@@ -6,7 +6,7 @@ from dgl.mock_sparse2 import diag, create_from_coo
import
backend
as
F
import
backend
as
F
#
FIXME(issue
#4818): Skipping tests on win.
#
TODO(
#4818): Skipping tests on win.
if
not
sys
.
platform
.
startswith
(
"linux"
):
if
not
sys
.
platform
.
startswith
(
"linux"
):
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
...
...
tests/pytorch/mock_sparse2/test_unary_op_sp.py
View file @
a80bd9e0
...
@@ -6,7 +6,7 @@ import backend as F
...
@@ -6,7 +6,7 @@ import backend as F
from
dgl.mock_sparse2
import
create_from_coo
from
dgl.mock_sparse2
import
create_from_coo
#
FIXME(issue
#4818): Skipping tests on win.
#
TODO(
#4818): Skipping tests on win.
if
not
sys
.
platform
.
startswith
(
"linux"
):
if
not
sys
.
platform
.
startswith
(
"linux"
):
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
pytest
.
skip
(
"skipping tests on win"
,
allow_module_level
=
True
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment