Skip to content

Commit 7b31783

Browse files
committed
fix ci
1 parent 44b780b commit 7b31783

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

torch_geometric/nn/aggr/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def forward(self, x: Tensor, index: Optional[Tensor] = None,
6565

6666

6767
class MulAggregation(Aggregation):
68-
r"""An aggregation operator that multiplies features across a set of
68+
r"""An aggregation operator that multiples features across a set of
6969
elements.
7070
7171
.. math::

torch_geometric/nn/pool/select/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(
6262
self.weight = weight
6363

6464

65-
SelectOutput = torch.export(SelectOutput)
65+
SelectOutput = torch.jit.script(SelectOutput)
6666

6767

6868
class Select(torch.nn.Module):

0 commit comments

Comments
 (0)