Skip to content

Commit b048ec2

Browse files
committed
Fix merge
1 parent 604207d commit b048ec2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cuda_core/cuda/core/graph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
from ._graph_builder import *
6-
from ._graph_def import *
6+
from ._graph_definition import *
77
from ._graph_node import *
88
from ._subclasses import *

cuda_core/cuda/core/graph/_graph_definition.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ from dataclasses import dataclass
2727

2828
from cuda.core._utils.cuda_utils import driver
2929

30-
__all__ = ['GraphCondition', 'GraphAllocOptions', 'GraphDef']
30+
__all__ = ['GraphCondition', 'GraphAllocOptions', 'GraphDefinition']
3131

3232

3333
cdef class GraphCondition:

0 commit comments

Comments
 (0)