-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy path__init__.py
More file actions
140 lines (132 loc) · 2.46 KB
/
__init__.py
File metadata and controls
140 lines (132 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import contextlib
import infinicore.context as context
import infinicore.nn as nn
# Import context functions
from infinicore.context import (
get_device,
get_device_count,
get_stream,
set_device,
sync_device,
sync_stream,
)
from infinicore.device import device
from infinicore.device_event import DeviceEvent
from infinicore.dtype import (
bfloat16,
bool,
cdouble,
cfloat,
chalf,
complex32,
complex64,
complex128,
double,
dtype,
float,
float16,
float32,
float64,
half,
int,
int8,
int16,
int32,
int64,
long,
short,
uint8,
)
from infinicore.ops.add import add
from infinicore.ops.attention import attention
from infinicore.ops.logical_or import logical_or
from infinicore.ops.logical_xor import logical_xor
from infinicore.ops.logsigmoid import logsigmoid
from infinicore.ops.where import where
from infinicore.ops.vdot import vdot
from infinicore.ops.matmul import matmul
from infinicore.ops.mul import mul
from infinicore.ops.narrow import narrow
from infinicore.ops.rearrange import rearrange
from infinicore.tensor import (
Tensor,
empty,
empty_like,
from_blob,
from_list,
from_numpy,
from_torch,
ones,
strided_empty,
strided_from_blob,
zeros,
)
__all__ = [
# Modules.
"context",
"nn",
# Classes.
"device",
"DeviceEvent",
"dtype",
"Tensor",
# Context functions.
"get_device",
"get_device_count",
"get_stream",
"set_device",
"sync_device",
"sync_stream",
# Data Types.
"bfloat16",
"bool",
"cdouble",
"cfloat",
"chalf",
"complex32",
"complex64",
"complex128",
"double",
"float",
"float16",
"float32",
"float64",
"half",
"int",
"int8",
"int16",
"int32",
"int64",
"long",
"short",
"uint8",
# Operations.
"add",
"attention",
"logical_or",
"logical_xor",
"logsigmoid",
"where",
"vdot",
"matmul",
"mul",
"narrow",
"rearrange",
"empty",
"empty_like",
"from_blob",
"from_list",
"from_numpy",
"from_torch",
"ones",
"strided_empty",
"strided_from_blob",
"zeros",
]
use_ntops = False
with contextlib.suppress(ImportError, ModuleNotFoundError):
import sys
import ntops
for op_name in ntops.torch.__all__:
getattr(ntops.torch, op_name).__globals__["torch"] = sys.modules[__name__]
use_ntops = True