Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

__init__.py 1.3 KB

You have to be logged in to leave a comment. Sign In
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
  1. """
  2. AveCL ! Make OpenCL great again.
  3. Lightweight ndarray library using OpenCL 1.2 written in pure python.
  4. Applicable for high-performance general purpose n-dim array computations for every device that supports OpenCL 1.2.
  5. Supports any dtype except float64.
  6. Works in python 3.5+. Dependencies: numpy.
  7. This lib uses relative import, thus you can place it in any subfolder.
  8. The lib is not thread-safe.
  9. made by @iperov from scratch.
  10. """
  11. from xlib.avecl._internal.initializer.InitConst import InitConst
  12. from ._internal.AAxes import AAxes
  13. from ._internal.AShape import AShape
  14. from ._internal.backend import (Device, DeviceInfo, Kernel,
  15. get_available_devices_info, get_best_device,
  16. get_default_device, get_device,
  17. set_default_device)
  18. from ._internal.EInterpolation import EInterpolation
  19. from ._internal.HArgs import HArgs
  20. from ._internal.HKernel import HKernel
  21. from ._internal.HTensor import HTensor
  22. from ._internal.HType import HType
  23. from ._internal.initializer import (InitConst, InitCoords2DArange, Initializer,
  24. InitRandomUniform)
  25. from ._internal.NCore import NCore
  26. from ._internal.NTest import NTest
  27. from ._internal.op import *
  28. from ._internal.SCacheton import SCacheton
  29. from ._internal.Tensor import Tensor
  30. from ._internal.TensorImpl import *
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...