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
torch-scatter
Commits
452097ba
Commit
452097ba
authored
May 02, 2018
by
rusty1s
Browse files
multi dim bugfixes
parent
c3014a78
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
40 additions
and
56 deletions
+40
-56
setup.py
setup.py
+1
-1
test/test_backward.py
test/test_backward.py
+8
-8
test/test_forward.py
test/test_forward.py
+21
-21
torch_scatter/__init__.py
torch_scatter/__init__.py
+1
-1
torch_scatter/add.py
torch_scatter/add.py
+1
-21
torch_scatter/div.py
torch_scatter/div.py
+2
-1
torch_scatter/mean.py
torch_scatter/mean.py
+3
-1
torch_scatter/mul.py
torch_scatter/mul.py
+2
-1
torch_scatter/utils/gen.py
torch_scatter/utils/gen.py
+1
-1
No files found.
setup.py
View file @
452097ba
...
@@ -2,7 +2,7 @@ from os import path as osp
...
@@ -2,7 +2,7 @@ from os import path as osp
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
__version__
=
'1.0.
1
'
__version__
=
'1.0.
2
'
url
=
'https://github.com/rusty1s/pytorch_scatter'
url
=
'https://github.com/rusty1s/pytorch_scatter'
install_requires
=
[
'cffi'
]
install_requires
=
[
'cffi'
]
...
...
test/test_backward.py
View file @
452097ba
...
@@ -14,30 +14,30 @@ indices = [2, 0, 1, 1, 0]
...
@@ -14,30 +14,30 @@ indices = [2, 0, 1, 1, 0]
@
pytest
.
mark
.
parametrize
(
'func,device'
,
product
(
funcs
,
devices
))
@
pytest
.
mark
.
parametrize
(
'func,device'
,
product
(
funcs
,
devices
))
def
test_backward
(
func
,
device
):
def
test_backward
(
func
,
device
):
index
=
torch
.
tensor
(
indices
,
dtype
=
torch
.
long
,
device
=
device
)
index
=
torch
.
tensor
(
indices
,
dtype
=
torch
.
long
,
device
=
device
)
src
=
torch
.
rand
(
index
.
size
(),
dtype
=
torch
.
double
,
device
=
device
)
src
=
torch
.
rand
(
(
index
.
size
(
0
),
2
),
dtype
=
torch
.
double
,
device
=
device
)
src
.
requires_grad_
()
src
.
requires_grad_
()
op
=
getattr
(
torch_scatter
,
'scatter_{}'
.
format
(
func
))
op
=
getattr
(
torch_scatter
,
'scatter_{}'
.
format
(
func
))
data
=
(
src
,
index
)
data
=
(
src
,
index
,
0
)
assert
gradcheck
(
op
,
data
,
eps
=
1e-6
,
atol
=
1e-4
)
is
True
assert
gradcheck
(
op
,
data
,
eps
=
1e-6
,
atol
=
1e-4
)
is
True
tests
=
[{
tests
=
[{
'name'
:
'max'
,
'name'
:
'max'
,
'src'
:
[
1
,
2
,
3
,
4
,
5
],
'src'
:
[
[
1
,
1
],
[
2
,
2
],
[
3
,
3
],
[
4
,
4
],
[
5
,
5
]
],
'index'
:
[
2
,
0
,
1
,
1
,
0
],
'index'
:
[
2
,
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'grad'
:
[
4
,
8
,
6
],
'grad'
:
[
[
4
,
4
],
[
8
,
8
],
[
6
,
6
]
],
'expected'
:
[
6
,
0
,
0
,
8
,
4
]
'expected'
:
[
[
6
,
6
],
[
0
,
0
]
,
[
0
,
0
],
[
8
,
8
],
[
4
,
4
]],
},
{
},
{
'name'
:
'min'
,
'name'
:
'min'
,
'src'
:
[
1
,
2
,
3
,
4
,
5
],
'src'
:
[
[
1
,
1
],
[
2
,
2
],
[
3
,
3
],
[
4
,
4
],
[
5
,
5
]
],
'index'
:
[
2
,
0
,
1
,
1
,
0
],
'index'
:
[
2
,
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
3
,
'fill_value'
:
3
,
'grad'
:
[
4
,
8
,
6
],
'grad'
:
[
[
4
,
4
],
[
8
,
8
],
[
6
,
6
]
],
'expected'
:
[
6
,
4
,
8
,
0
,
0
]
'expected'
:
[
[
6
,
6
],
[
4
,
4
],
[
8
,
8
],
[
0
,
0
],
[
0
,
0
]],
}]
}]
...
...
test/test_forward.py
View file @
452097ba
...
@@ -12,70 +12,70 @@ tests = [{
...
@@ -12,70 +12,70 @@ tests = [{
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'expected'
:
[[
0
,
0
,
4
,
3
,
3
,
0
],
[
2
,
4
,
4
,
0
,
0
,
0
]]
'expected'
:
[[
0
,
0
,
4
,
3
,
3
,
0
],
[
2
,
4
,
4
,
0
,
0
,
0
]]
,
},
{
},
{
'name'
:
'add'
,
'name'
:
'add'
,
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'expected'
:
[[
6
,
5
],
[
6
,
8
]]
'expected'
:
[[
6
,
5
],
[
6
,
8
]]
,
},
{
},
{
'name'
:
'sub'
,
'name'
:
'sub'
,
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
9
,
'fill_value'
:
9
,
'expected'
:
[[
9
,
9
,
5
,
6
,
6
,
9
],
[
7
,
5
,
5
,
9
,
9
,
9
]]
'expected'
:
[[
9
,
9
,
5
,
6
,
6
,
9
],
[
7
,
5
,
5
,
9
,
9
,
9
]]
,
},
{
},
{
'name'
:
'sub'
,
'name'
:
'sub'
,
'src'
:
[[
5
,
2
],
[
2
,
2
],
[
4
,
2
],
[
1
,
3
]],
'src'
:
[[
5
,
2
],
[
2
,
2
],
[
4
,
2
],
[
1
,
3
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
9
,
'fill_value'
:
9
,
'expected'
:
[[
3
,
4
],
[
3
,
5
]]
'expected'
:
[[
3
,
4
],
[
3
,
5
]]
,
},
{
},
{
'name'
:
'mul'
,
'name'
:
'mul'
,
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
1
,
'fill_value'
:
1
,
'expected'
:
[[
1
,
1
,
4
,
3
,
2
,
0
],
[
0
,
4
,
3
,
1
,
1
,
1
]]
'expected'
:
[[
1
,
1
,
4
,
3
,
2
,
0
],
[
0
,
4
,
3
,
1
,
1
,
1
]]
,
},
{
},
{
'name'
:
'mul'
,
'name'
:
'mul'
,
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
1
,
'fill_value'
:
1
,
'expected'
:
[[
5
,
6
],
[
8
,
15
]]
'expected'
:
[[
5
,
6
],
[
8
,
15
]]
,
},
{
},
{
'name'
:
'div'
,
'name'
:
'div'
,
'src'
:
[[
2
,
1
,
1
,
4
,
2
],
[
1
,
2
,
1
,
2
,
4
]],
'src'
:
[[
2
,
1
,
1
,
4
,
2
],
[
1
,
2
,
1
,
2
,
4
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
1
,
'fill_value'
:
1
,
'expected'
:
[[
1
,
1
,
0.25
,
0.5
,
0.5
,
1
],
[
0.5
,
0.25
,
0.5
,
1
,
1
,
1
]]
'expected'
:
[[
1
,
1
,
0.25
,
0.5
,
0.5
,
1
],
[
0.5
,
0.25
,
0.5
,
1
,
1
,
1
]]
,
},
{
},
{
'name'
:
'div'
,
'name'
:
'div'
,
'src'
:
[[
4
,
2
],
[
2
,
1
],
[
4
,
2
],
[
1
,
2
]],
'src'
:
[[
4
,
2
],
[
2
,
1
],
[
4
,
2
],
[
1
,
2
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
1
,
'fill_value'
:
1
,
'expected'
:
[[
0.25
,
0.25
],
[
0.125
,
0.5
]]
'expected'
:
[[
0.25
,
0.25
],
[
0.125
,
0.5
]]
,
},
{
},
{
'name'
:
'mean'
,
'name'
:
'mean'
,
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'index'
:
[[
4
,
5
,
4
,
2
,
3
],
[
0
,
0
,
2
,
2
,
1
]],
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'expected'
:
[[
0
,
0
,
4
,
3
,
1.5
,
0
],
[
1
,
4
,
2
,
0
,
0
,
0
]]
'expected'
:
[[
0
,
0
,
4
,
3
,
1.5
,
0
],
[
1
,
4
,
2
,
0
,
0
,
0
]]
,
},
{
},
{
'name'
:
'mean'
,
'name'
:
'mean'
,
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'expected'
:
[[
3
,
2.5
],
[
3
,
4
]]
'expected'
:
[[
3
,
2.5
],
[
3
,
4
]]
,
},
{
},
{
'name'
:
'max'
,
'name'
:
'max'
,
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
...
@@ -83,15 +83,15 @@ tests = [{
...
@@ -83,15 +83,15 @@ tests = [{
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'expected'
:
[[
0
,
0
,
4
,
3
,
2
,
0
],
[
2
,
4
,
3
,
0
,
0
,
0
]],
'expected'
:
[[
0
,
0
,
4
,
3
,
2
,
0
],
[
2
,
4
,
3
,
0
,
0
,
0
]],
'expected_arg'
:
[[
-
1
,
-
1
,
3
,
4
,
0
,
1
],
[
1
,
4
,
3
,
-
1
,
-
1
,
-
1
]]
'expected_arg'
:
[[
-
1
,
-
1
,
3
,
4
,
0
,
1
],
[
1
,
4
,
3
,
-
1
,
-
1
,
-
1
]]
,
},
{
},
{
'name'
:
'max'
,
'name'
:
'max'
,
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
0
,
'fill_value'
:
0
,
'expected'
:
[[
5
,
3
],
[
4
,
5
]],
'expected'
:
[[
5
,
3
],
[
4
,
5
]],
'expected_arg'
:
[[
0
,
3
],
[
2
,
1
]]
'expected_arg'
:
[[
0
,
3
],
[
2
,
1
]]
,
},
{
},
{
'name'
:
'min'
,
'name'
:
'min'
,
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
'src'
:
[[
2
,
0
,
1
,
4
,
3
],
[
0
,
2
,
1
,
3
,
4
]],
...
@@ -99,15 +99,15 @@ tests = [{
...
@@ -99,15 +99,15 @@ tests = [{
'dim'
:
-
1
,
'dim'
:
-
1
,
'fill_value'
:
9
,
'fill_value'
:
9
,
'expected'
:
[[
9
,
9
,
4
,
3
,
1
,
0
],
[
0
,
4
,
1
,
9
,
9
,
9
]],
'expected'
:
[[
9
,
9
,
4
,
3
,
1
,
0
],
[
0
,
4
,
1
,
9
,
9
,
9
]],
'expected_arg'
:
[[
-
1
,
-
1
,
3
,
4
,
2
,
1
],
[
0
,
4
,
2
,
-
1
,
-
1
,
-
1
]]
'expected_arg'
:
[[
-
1
,
-
1
,
3
,
4
,
2
,
1
],
[
0
,
4
,
2
,
-
1
,
-
1
,
-
1
]]
,
},
{
},
{
'name'
:
'min'
,
'name'
:
'min'
,
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'src'
:
[[
5
,
2
],
[
2
,
5
],
[
4
,
3
],
[
1
,
3
]],
'index'
:
[
[
0
,
0
],
[
1
,
1
]
,
[
1
,
1
],
[
0
,
0
]
],
'index'
:
[
0
,
1
,
1
,
0
],
'dim'
:
0
,
'dim'
:
0
,
'fill_value'
:
9
,
'fill_value'
:
9
,
'expected'
:
[[
1
,
2
],
[
2
,
3
]],
'expected'
:
[[
1
,
2
],
[
2
,
3
]],
'expected_arg'
:
[[
3
,
0
],
[
1
,
2
]]
'expected_arg'
:
[[
3
,
0
],
[
1
,
2
]]
,
}]
}]
...
...
torch_scatter/__init__.py
View file @
452097ba
...
@@ -6,7 +6,7 @@ from .mean import scatter_mean
...
@@ -6,7 +6,7 @@ from .mean import scatter_mean
from
.max
import
scatter_max
from
.max
import
scatter_max
from
.min
import
scatter_min
from
.min
import
scatter_min
__version__
=
'1.0.
1
'
__version__
=
'1.0.
2
'
__all__
=
[
__all__
=
[
'scatter_add'
,
'scatter_sub'
,
'scatter_mul'
,
'scatter_div'
,
'scatter_mean'
,
'scatter_add'
,
'scatter_sub'
,
'scatter_mul'
,
'scatter_div'
,
'scatter_mean'
,
...
...
torch_scatter/add.py
View file @
452097ba
from
torch.autograd
import
Function
from
.utils.gen
import
gen
from
.utils.gen
import
gen
class
ScatterAdd
(
Function
):
@
staticmethod
def
forward
(
ctx
,
out
,
src
,
index
,
dim
):
ctx
.
mark_dirty
(
out
)
ctx
.
save_for_backward
(
index
)
return
out
.
scatter_add_
(
dim
,
index
,
src
)
@
staticmethod
def
backward
(
ctx
,
grad_out
):
index
,
=
ctx
.
saved_variables
grad_src
=
None
if
ctx
.
needs_input_grad
[
1
]:
grad_src
=
grad_out
[
index
]
return
None
,
grad_src
,
None
,
None
def
scatter_add
(
src
,
index
,
dim
=-
1
,
out
=
None
,
dim_size
=
None
,
fill_value
=
0
):
def
scatter_add
(
src
,
index
,
dim
=-
1
,
out
=
None
,
dim_size
=
None
,
fill_value
=
0
):
r
"""
r
"""
|
|
...
@@ -90,4 +70,4 @@ def scatter_add(src, index, dim=-1, out=None, dim_size=None, fill_value=0):
...
@@ -90,4 +70,4 @@ def scatter_add(src, index, dim=-1, out=None, dim_size=None, fill_value=0):
[ 2, 4, 4, 0, 0, 0]])
[ 2, 4, 4, 0, 0, 0]])
"""
"""
src
,
out
,
index
,
dim
=
gen
(
src
,
index
,
dim
,
out
,
dim_size
,
fill_value
)
src
,
out
,
index
,
dim
=
gen
(
src
,
index
,
dim
,
out
,
dim_size
,
fill_value
)
return
S
catter
Add
.
apply
(
out
,
src
,
index
,
dim
)
return
out
.
s
catter
_add_
(
dim
,
index
,
src
)
torch_scatter/div.py
View file @
452097ba
...
@@ -12,6 +12,7 @@ class ScatterDiv(Function):
...
@@ -12,6 +12,7 @@ class ScatterDiv(Function):
ctx
.
mark_dirty
(
out
)
ctx
.
mark_dirty
(
out
)
ctx
.
save_for_backward
(
out
,
src
,
index
)
ctx
.
save_for_backward
(
out
,
src
,
index
)
ctx
.
dim
=
dim
return
out
return
out
...
@@ -21,7 +22,7 @@ class ScatterDiv(Function):
...
@@ -21,7 +22,7 @@ class ScatterDiv(Function):
grad_src
=
None
grad_src
=
None
if
ctx
.
needs_input_grad
[
1
]:
if
ctx
.
needs_input_grad
[
1
]:
grad_src
=
-
(
out
*
grad_out
)
[
index
]
/
src
grad_src
=
-
(
out
*
grad_out
)
.
gather
(
ctx
.
dim
,
index
)
/
src
return
None
,
grad_src
,
None
,
None
return
None
,
grad_src
,
None
,
None
...
...
torch_scatter/mean.py
View file @
452097ba
...
@@ -15,6 +15,7 @@ class ScatterMean(Function):
...
@@ -15,6 +15,7 @@ class ScatterMean(Function):
ctx
.
mark_dirty
(
out
)
ctx
.
mark_dirty
(
out
)
ctx
.
save_for_backward
(
index
,
count
)
ctx
.
save_for_backward
(
index
,
count
)
ctx
.
dim
=
dim
return
out
return
out
...
@@ -24,7 +25,8 @@ class ScatterMean(Function):
...
@@ -24,7 +25,8 @@ class ScatterMean(Function):
grad_src
=
None
grad_src
=
None
if
ctx
.
needs_input_grad
[
1
]:
if
ctx
.
needs_input_grad
[
1
]:
grad_src
=
grad_out
[
index
]
/
count
[
index
]
grad_src
=
grad_out
.
gather
(
ctx
.
dim
,
index
)
grad_src
/=
count
.
gather
(
ctx
.
dim
,
index
)
return
None
,
grad_src
,
None
,
None
return
None
,
grad_src
,
None
,
None
...
...
torch_scatter/mul.py
View file @
452097ba
...
@@ -12,6 +12,7 @@ class ScatterMul(Function):
...
@@ -12,6 +12,7 @@ class ScatterMul(Function):
ctx
.
mark_dirty
(
out
)
ctx
.
mark_dirty
(
out
)
ctx
.
save_for_backward
(
out
,
src
,
index
)
ctx
.
save_for_backward
(
out
,
src
,
index
)
ctx
.
dim
=
dim
return
out
return
out
...
@@ -21,7 +22,7 @@ class ScatterMul(Function):
...
@@ -21,7 +22,7 @@ class ScatterMul(Function):
grad_src
=
None
grad_src
=
None
if
ctx
.
needs_input_grad
[
1
]:
if
ctx
.
needs_input_grad
[
1
]:
grad_src
=
(
grad_out
*
out
)
[
index
]
/
src
grad_src
=
(
grad_out
*
out
)
.
gather
(
ctx
.
dim
,
index
)
/
src
return
None
,
grad_src
,
None
,
None
return
None
,
grad_src
,
None
,
None
...
...
torch_scatter/utils/gen.py
View file @
452097ba
...
@@ -12,7 +12,7 @@ def gen(src, index, dim=-1, out=None, dim_size=None, fill_value=0):
...
@@ -12,7 +12,7 @@ def gen(src, index, dim=-1, out=None, dim_size=None, fill_value=0):
# Generate output tensor if not given.
# Generate output tensor if not given.
if
out
is
None
:
if
out
is
None
:
dim_size
=
index
.
max
()
+
1
if
dim_size
is
None
else
dim_size
dim_size
=
index
.
max
()
.
item
()
+
1
if
dim_size
is
None
else
dim_size
out_size
=
list
(
src
.
size
())
out_size
=
list
(
src
.
size
())
out_size
[
dim
]
=
dim_size
out_size
[
dim
]
=
dim_size
out
=
src
.
new_full
(
out_size
,
fill_value
)
out
=
src
.
new_full
(
out_size
,
fill_value
)
...
...
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