triton-windows 3.3.0a0.post12__cp312-cp312-win_amd64.whl → 3.3.0a0.post14__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of triton-windows might be problematic. Click here for more details.
- triton/_C/libtriton.pyd +0 -0
- triton/__init__.py +0 -12
- triton/backends/nvidia/compiler.py +3 -1
- triton/compiler/compiler.py +4 -4
- triton/runtime/build.py +29 -10
- triton/runtime/tcc/include/_mingw.h +170 -0
- triton/runtime/tcc/include/assert.h +57 -0
- triton/runtime/tcc/include/conio.h +409 -0
- triton/runtime/tcc/include/ctype.h +281 -0
- triton/runtime/tcc/include/dir.h +31 -0
- triton/runtime/tcc/include/direct.h +68 -0
- triton/runtime/tcc/include/dirent.h +135 -0
- triton/runtime/tcc/include/dos.h +55 -0
- triton/runtime/tcc/include/errno.h +75 -0
- triton/runtime/tcc/include/excpt.h +123 -0
- triton/runtime/tcc/include/fcntl.h +52 -0
- triton/runtime/tcc/include/fenv.h +108 -0
- triton/runtime/tcc/include/float.h +57 -0
- triton/runtime/tcc/include/inttypes.h +297 -0
- triton/runtime/tcc/include/io.h +418 -0
- triton/runtime/tcc/include/limits.h +111 -0
- triton/runtime/tcc/include/locale.h +91 -0
- triton/runtime/tcc/include/malloc.h +181 -0
- triton/runtime/tcc/include/math.h +737 -0
- triton/runtime/tcc/include/mem.h +13 -0
- triton/runtime/tcc/include/memory.h +40 -0
- triton/runtime/tcc/include/process.h +176 -0
- triton/runtime/tcc/include/sec_api/conio_s.h +42 -0
- triton/runtime/tcc/include/sec_api/crtdbg_s.h +19 -0
- triton/runtime/tcc/include/sec_api/io_s.h +33 -0
- triton/runtime/tcc/include/sec_api/mbstring_s.h +52 -0
- triton/runtime/tcc/include/sec_api/search_s.h +25 -0
- triton/runtime/tcc/include/sec_api/stdio_s.h +145 -0
- triton/runtime/tcc/include/sec_api/stdlib_s.h +67 -0
- triton/runtime/tcc/include/sec_api/stralign_s.h +30 -0
- triton/runtime/tcc/include/sec_api/string_s.h +41 -0
- triton/runtime/tcc/include/sec_api/sys/timeb_s.h +34 -0
- triton/runtime/tcc/include/sec_api/tchar_s.h +266 -0
- triton/runtime/tcc/include/sec_api/time_s.h +61 -0
- triton/runtime/tcc/include/sec_api/wchar_s.h +128 -0
- triton/runtime/tcc/include/setjmp.h +160 -0
- triton/runtime/tcc/include/share.h +28 -0
- triton/runtime/tcc/include/signal.h +63 -0
- triton/runtime/tcc/include/stdarg.h +79 -0
- triton/runtime/tcc/include/stdbool.h +11 -0
- triton/runtime/tcc/include/stddef.h +54 -0
- triton/runtime/tcc/include/stdint.h +212 -0
- triton/runtime/tcc/include/stdio.h +429 -0
- triton/runtime/tcc/include/stdlib.h +580 -0
- triton/runtime/tcc/include/string.h +164 -0
- triton/runtime/tcc/include/sys/fcntl.h +13 -0
- triton/runtime/tcc/include/sys/file.h +14 -0
- triton/runtime/tcc/include/sys/locking.h +30 -0
- triton/runtime/tcc/include/sys/stat.h +290 -0
- triton/runtime/tcc/include/sys/time.h +69 -0
- triton/runtime/tcc/include/sys/timeb.h +133 -0
- triton/runtime/tcc/include/sys/types.h +118 -0
- triton/runtime/tcc/include/sys/unistd.h +14 -0
- triton/runtime/tcc/include/sys/utime.h +146 -0
- triton/runtime/tcc/include/tcc/tcc_libm.h +201 -0
- triton/runtime/tcc/include/tcclib.h +80 -0
- triton/runtime/tcc/include/tchar.h +1102 -0
- triton/runtime/tcc/include/time.h +287 -0
- triton/runtime/tcc/include/vadefs.h +11 -0
- triton/runtime/tcc/include/values.h +4 -0
- triton/runtime/tcc/include/varargs.h +12 -0
- triton/runtime/tcc/include/wchar.h +873 -0
- triton/runtime/tcc/include/wctype.h +172 -0
- triton/runtime/tcc/include/winapi/basetsd.h +149 -0
- triton/runtime/tcc/include/winapi/basetyps.h +85 -0
- triton/runtime/tcc/include/winapi/guiddef.h +156 -0
- triton/runtime/tcc/include/winapi/poppack.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack1.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack2.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack4.h +8 -0
- triton/runtime/tcc/include/winapi/pshpack8.h +8 -0
- triton/runtime/tcc/include/winapi/winbase.h +2951 -0
- triton/runtime/tcc/include/winapi/wincon.h +301 -0
- triton/runtime/tcc/include/winapi/windef.h +293 -0
- triton/runtime/tcc/include/winapi/windows.h +127 -0
- triton/runtime/tcc/include/winapi/winerror.h +3166 -0
- triton/runtime/tcc/include/winapi/wingdi.h +4080 -0
- triton/runtime/tcc/include/winapi/winnt.h +5835 -0
- triton/runtime/tcc/include/winapi/winreg.h +272 -0
- triton/runtime/tcc/include/winapi/winuser.h +5651 -0
- triton/runtime/tcc/include/winapi/winver.h +160 -0
- triton/runtime/tcc/lib/cuda.def +697 -0
- triton/runtime/tcc/lib/gdi32.def +337 -0
- triton/runtime/tcc/lib/kernel32.def +770 -0
- triton/runtime/tcc/lib/libtcc1-64.a +0 -0
- triton/runtime/tcc/lib/msvcrt.def +1399 -0
- triton/runtime/tcc/lib/python3.def +810 -0
- triton/runtime/tcc/lib/user32.def +658 -0
- triton/runtime/tcc/libtcc.dll +0 -0
- triton/runtime/tcc/tcc.exe +0 -0
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post14.dist-info}/METADATA +1 -1
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post14.dist-info}/RECORD +99 -9
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post14.dist-info}/WHEEL +0 -0
- {triton_windows-3.3.0a0.post12.dist-info → triton_windows-3.3.0a0.post14.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
LIBRARY gdi32.dll
|
|
2
|
+
|
|
3
|
+
EXPORTS
|
|
4
|
+
AbortDoc
|
|
5
|
+
AbortPath
|
|
6
|
+
AddFontResourceA
|
|
7
|
+
AddFontResourceW
|
|
8
|
+
AngleArc
|
|
9
|
+
AnimatePalette
|
|
10
|
+
Arc
|
|
11
|
+
ArcTo
|
|
12
|
+
BeginPath
|
|
13
|
+
BitBlt
|
|
14
|
+
ByeByeGDI
|
|
15
|
+
CancelDC
|
|
16
|
+
CheckColorsInGamut
|
|
17
|
+
ChoosePixelFormat
|
|
18
|
+
Chord
|
|
19
|
+
CloseEnhMetaFile
|
|
20
|
+
CloseFigure
|
|
21
|
+
CloseMetaFile
|
|
22
|
+
ColorCorrectPalette
|
|
23
|
+
ColorMatchToTarget
|
|
24
|
+
CombineRgn
|
|
25
|
+
CombineTransform
|
|
26
|
+
CopyEnhMetaFileA
|
|
27
|
+
CopyEnhMetaFileW
|
|
28
|
+
CopyMetaFileA
|
|
29
|
+
CopyMetaFileW
|
|
30
|
+
CreateBitmap
|
|
31
|
+
CreateBitmapIndirect
|
|
32
|
+
CreateBrushIndirect
|
|
33
|
+
CreateColorSpaceA
|
|
34
|
+
CreateColorSpaceW
|
|
35
|
+
CreateCompatibleBitmap
|
|
36
|
+
CreateCompatibleDC
|
|
37
|
+
CreateDCA
|
|
38
|
+
CreateDCW
|
|
39
|
+
CreateDIBPatternBrush
|
|
40
|
+
CreateDIBPatternBrushPt
|
|
41
|
+
CreateDIBSection
|
|
42
|
+
CreateDIBitmap
|
|
43
|
+
CreateDiscardableBitmap
|
|
44
|
+
CreateEllipticRgn
|
|
45
|
+
CreateEllipticRgnIndirect
|
|
46
|
+
CreateEnhMetaFileA
|
|
47
|
+
CreateEnhMetaFileW
|
|
48
|
+
CreateFontA
|
|
49
|
+
CreateFontIndirectA
|
|
50
|
+
CreateFontIndirectW
|
|
51
|
+
CreateFontW
|
|
52
|
+
CreateHalftonePalette
|
|
53
|
+
CreateHatchBrush
|
|
54
|
+
CreateICA
|
|
55
|
+
CreateICW
|
|
56
|
+
CreateMetaFileA
|
|
57
|
+
CreateMetaFileW
|
|
58
|
+
CreatePalette
|
|
59
|
+
CreatePatternBrush
|
|
60
|
+
CreatePen
|
|
61
|
+
CreatePenIndirect
|
|
62
|
+
CreatePolyPolygonRgn
|
|
63
|
+
CreatePolygonRgn
|
|
64
|
+
CreateRectRgn
|
|
65
|
+
CreateRectRgnIndirect
|
|
66
|
+
CreateRoundRectRgn
|
|
67
|
+
CreateScalableFontResourceA
|
|
68
|
+
CreateScalableFontResourceW
|
|
69
|
+
CreateSolidBrush
|
|
70
|
+
DPtoLP
|
|
71
|
+
DeleteColorSpace
|
|
72
|
+
DeleteDC
|
|
73
|
+
DeleteEnhMetaFile
|
|
74
|
+
DeleteMetaFile
|
|
75
|
+
DeleteObject
|
|
76
|
+
DescribePixelFormat
|
|
77
|
+
DeviceCapabilitiesEx
|
|
78
|
+
DeviceCapabilitiesExA
|
|
79
|
+
DeviceCapabilitiesExW
|
|
80
|
+
DrawEscape
|
|
81
|
+
Ellipse
|
|
82
|
+
EnableEUDC
|
|
83
|
+
EndDoc
|
|
84
|
+
EndPage
|
|
85
|
+
EndPath
|
|
86
|
+
EnumEnhMetaFile
|
|
87
|
+
EnumFontFamiliesA
|
|
88
|
+
EnumFontFamiliesExA
|
|
89
|
+
EnumFontFamiliesExW
|
|
90
|
+
EnumFontFamiliesW
|
|
91
|
+
EnumFontsA
|
|
92
|
+
EnumFontsW
|
|
93
|
+
EnumICMProfilesA
|
|
94
|
+
EnumICMProfilesW
|
|
95
|
+
EnumMetaFile
|
|
96
|
+
EnumObjects
|
|
97
|
+
EqualRgn
|
|
98
|
+
Escape
|
|
99
|
+
ExcludeClipRect
|
|
100
|
+
ExtCreatePen
|
|
101
|
+
ExtCreateRegion
|
|
102
|
+
ExtEscape
|
|
103
|
+
ExtFloodFill
|
|
104
|
+
ExtSelectClipRgn
|
|
105
|
+
ExtTextOutA
|
|
106
|
+
ExtTextOutW
|
|
107
|
+
FillPath
|
|
108
|
+
FillRgn
|
|
109
|
+
FixBrushOrgEx
|
|
110
|
+
FlattenPath
|
|
111
|
+
FloodFill
|
|
112
|
+
FrameRgn
|
|
113
|
+
GdiComment
|
|
114
|
+
GdiFlush
|
|
115
|
+
GdiGetBatchLimit
|
|
116
|
+
GdiPlayDCScript
|
|
117
|
+
GdiPlayJournal
|
|
118
|
+
GdiPlayScript
|
|
119
|
+
GdiSetBatchLimit
|
|
120
|
+
GetArcDirection
|
|
121
|
+
GetAspectRatioFilterEx
|
|
122
|
+
GetBitmapBits
|
|
123
|
+
GetBitmapDimensionEx
|
|
124
|
+
GetBkColor
|
|
125
|
+
GetBkMode
|
|
126
|
+
GetBoundsRect
|
|
127
|
+
GetBrushOrgEx
|
|
128
|
+
GetCharABCWidthsA
|
|
129
|
+
GetCharABCWidthsFloatA
|
|
130
|
+
GetCharABCWidthsFloatW
|
|
131
|
+
GetCharABCWidthsW
|
|
132
|
+
GetCharWidth32A
|
|
133
|
+
GetCharWidth32W
|
|
134
|
+
GetCharWidthA
|
|
135
|
+
GetCharWidthFloatA
|
|
136
|
+
GetCharWidthFloatW
|
|
137
|
+
GetCharWidthW
|
|
138
|
+
GetCharacterPlacementA
|
|
139
|
+
GetCharacterPlacementW
|
|
140
|
+
GetClipBox
|
|
141
|
+
GetClipRgn
|
|
142
|
+
GetColorAdjustment
|
|
143
|
+
GetColorSpace
|
|
144
|
+
GetCurrentObject
|
|
145
|
+
GetCurrentPositionEx
|
|
146
|
+
GetDCOrgEx
|
|
147
|
+
GetDIBColorTable
|
|
148
|
+
GetDIBits
|
|
149
|
+
GetDeviceCaps
|
|
150
|
+
GetDeviceGammaRamp
|
|
151
|
+
GetEnhMetaFileA
|
|
152
|
+
GetEnhMetaFileBits
|
|
153
|
+
GetEnhMetaFileDescriptionA
|
|
154
|
+
GetEnhMetaFileDescriptionW
|
|
155
|
+
GetEnhMetaFileHeader
|
|
156
|
+
GetEnhMetaFilePaletteEntries
|
|
157
|
+
GetEnhMetaFileW
|
|
158
|
+
GetFontData
|
|
159
|
+
GetFontLanguageInfo
|
|
160
|
+
GetFontResourceInfo
|
|
161
|
+
GetGlyphOutline
|
|
162
|
+
GetGlyphOutlineA
|
|
163
|
+
GetGlyphOutlineW
|
|
164
|
+
GetGraphicsMode
|
|
165
|
+
GetICMProfileA
|
|
166
|
+
GetICMProfileW
|
|
167
|
+
GetKerningPairs
|
|
168
|
+
GetKerningPairsA
|
|
169
|
+
GetKerningPairsW
|
|
170
|
+
GetLayout
|
|
171
|
+
GetLogColorSpaceA
|
|
172
|
+
GetLogColorSpaceW
|
|
173
|
+
GetMapMode
|
|
174
|
+
GetMetaFileA
|
|
175
|
+
GetMetaFileBitsEx
|
|
176
|
+
GetMetaFileW
|
|
177
|
+
GetMetaRgn
|
|
178
|
+
GetMiterLimit
|
|
179
|
+
GetNearestColor
|
|
180
|
+
GetNearestPaletteIndex
|
|
181
|
+
GetObjectA
|
|
182
|
+
GetObjectType
|
|
183
|
+
GetObjectW
|
|
184
|
+
GetOutlineTextMetricsA
|
|
185
|
+
GetOutlineTextMetricsW
|
|
186
|
+
GetPaletteEntries
|
|
187
|
+
GetPath
|
|
188
|
+
GetPixel
|
|
189
|
+
GetPixelFormat
|
|
190
|
+
GetPolyFillMode
|
|
191
|
+
GetROP2
|
|
192
|
+
GetRandomRgn
|
|
193
|
+
GetRasterizerCaps
|
|
194
|
+
GetRegionData
|
|
195
|
+
GetRgnBox
|
|
196
|
+
GetStockObject
|
|
197
|
+
GetStretchBltMode
|
|
198
|
+
GetSystemPaletteEntries
|
|
199
|
+
GetSystemPaletteUse
|
|
200
|
+
GetTextAlign
|
|
201
|
+
GetTextCharacterExtra
|
|
202
|
+
GetTextCharset
|
|
203
|
+
GetTextCharsetInfo
|
|
204
|
+
GetTextColor
|
|
205
|
+
GetTextExtentExPointA
|
|
206
|
+
GetTextExtentExPointW
|
|
207
|
+
GetTextExtentPoint32A
|
|
208
|
+
GetTextExtentPoint32W
|
|
209
|
+
GetTextExtentPointA
|
|
210
|
+
GetTextExtentPointW
|
|
211
|
+
GetTextFaceA
|
|
212
|
+
GetTextFaceW
|
|
213
|
+
GetTextMetricsA
|
|
214
|
+
GetTextMetricsW
|
|
215
|
+
GetViewportExtEx
|
|
216
|
+
GetViewportOrgEx
|
|
217
|
+
GetWinMetaFileBits
|
|
218
|
+
GetWindowExtEx
|
|
219
|
+
GetWindowOrgEx
|
|
220
|
+
GetWorldTransform
|
|
221
|
+
IntersectClipRect
|
|
222
|
+
InvertRgn
|
|
223
|
+
LPtoDP
|
|
224
|
+
LineDDA
|
|
225
|
+
LineTo
|
|
226
|
+
MaskBlt
|
|
227
|
+
ModifyWorldTransform
|
|
228
|
+
MoveToEx
|
|
229
|
+
OffsetClipRgn
|
|
230
|
+
OffsetRgn
|
|
231
|
+
OffsetViewportOrgEx
|
|
232
|
+
OffsetWindowOrgEx
|
|
233
|
+
PaintRgn
|
|
234
|
+
PatBlt
|
|
235
|
+
PathToRegion
|
|
236
|
+
Pie
|
|
237
|
+
PlayEnhMetaFile
|
|
238
|
+
PlayEnhMetaFileRecord
|
|
239
|
+
PlayMetaFile
|
|
240
|
+
PlayMetaFileRecord
|
|
241
|
+
PlgBlt
|
|
242
|
+
PolyBezier
|
|
243
|
+
PolyBezierTo
|
|
244
|
+
PolyDraw
|
|
245
|
+
PolyPolygon
|
|
246
|
+
PolyPolyline
|
|
247
|
+
PolyTextOutA
|
|
248
|
+
PolyTextOutW
|
|
249
|
+
Polygon
|
|
250
|
+
Polyline
|
|
251
|
+
PolylineTo
|
|
252
|
+
PtInRegion
|
|
253
|
+
PtVisible
|
|
254
|
+
RealizePalette
|
|
255
|
+
RectInRegion
|
|
256
|
+
RectVisible
|
|
257
|
+
Rectangle
|
|
258
|
+
RemoveFontResourceA
|
|
259
|
+
RemoveFontResourceW
|
|
260
|
+
ResetDCA
|
|
261
|
+
ResetDCW
|
|
262
|
+
ResizePalette
|
|
263
|
+
RestoreDC
|
|
264
|
+
RoundRect
|
|
265
|
+
SaveDC
|
|
266
|
+
ScaleViewportExtEx
|
|
267
|
+
ScaleWindowExtEx
|
|
268
|
+
SelectClipPath
|
|
269
|
+
SelectClipRgn
|
|
270
|
+
SelectObject
|
|
271
|
+
SelectPalette
|
|
272
|
+
SetAbortProc
|
|
273
|
+
SetArcDirection
|
|
274
|
+
SetBitmapBits
|
|
275
|
+
SetBitmapDimensionEx
|
|
276
|
+
SetBkColor
|
|
277
|
+
SetBkMode
|
|
278
|
+
SetBoundsRect
|
|
279
|
+
SetBrushOrgEx
|
|
280
|
+
SetColorAdjustment
|
|
281
|
+
SetColorSpace
|
|
282
|
+
SetDIBColorTable
|
|
283
|
+
SetDIBits
|
|
284
|
+
SetDIBitsToDevice
|
|
285
|
+
SetDeviceGammaRamp
|
|
286
|
+
SetEnhMetaFileBits
|
|
287
|
+
SetFontEnumeration
|
|
288
|
+
SetGraphicsMode
|
|
289
|
+
SetICMMode
|
|
290
|
+
SetICMProfileA
|
|
291
|
+
SetICMProfileW
|
|
292
|
+
SetLayout
|
|
293
|
+
SetMagicColors
|
|
294
|
+
SetMapMode
|
|
295
|
+
SetMapperFlags
|
|
296
|
+
SetMetaFileBitsEx
|
|
297
|
+
SetMetaRgn
|
|
298
|
+
SetMiterLimit
|
|
299
|
+
SetObjectOwner
|
|
300
|
+
SetPaletteEntries
|
|
301
|
+
SetPixel
|
|
302
|
+
SetPixelFormat
|
|
303
|
+
SetPixelV
|
|
304
|
+
SetPolyFillMode
|
|
305
|
+
SetROP2
|
|
306
|
+
SetRectRgn
|
|
307
|
+
SetStretchBltMode
|
|
308
|
+
SetSystemPaletteUse
|
|
309
|
+
SetTextAlign
|
|
310
|
+
SetTextCharacterExtra
|
|
311
|
+
SetTextColor
|
|
312
|
+
SetTextJustification
|
|
313
|
+
SetViewportExtEx
|
|
314
|
+
SetViewportOrgEx
|
|
315
|
+
SetWinMetaFileBits
|
|
316
|
+
SetWindowExtEx
|
|
317
|
+
SetWindowOrgEx
|
|
318
|
+
SetWorldTransform
|
|
319
|
+
StartDocA
|
|
320
|
+
StartDocW
|
|
321
|
+
StartPage
|
|
322
|
+
StretchBlt
|
|
323
|
+
StretchDIBits
|
|
324
|
+
StrokeAndFillPath
|
|
325
|
+
StrokePath
|
|
326
|
+
SwapBuffers
|
|
327
|
+
TextOutA
|
|
328
|
+
TextOutW
|
|
329
|
+
TranslateCharsetInfo
|
|
330
|
+
UnrealizeObject
|
|
331
|
+
UpdateColors
|
|
332
|
+
UpdateICMRegKeyA
|
|
333
|
+
UpdateICMRegKeyW
|
|
334
|
+
WidenPath
|
|
335
|
+
gdiPlaySpoolStream
|
|
336
|
+
pfnRealizePalette
|
|
337
|
+
pfnSelectPalette
|