Kernels
kernels-bot commited on
Commit
3bf3198
·
verified ·
1 Parent(s): f6a6e45

Uploaded using `kernel-builder`.

Browse files
Files changed (41) hide show
  1. build/torch210-cxx11-cu126-aarch64-linux/__init__.py +11 -11
  2. build/torch210-cxx11-cu126-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
  3. build/torch210-cxx11-cu126-aarch64-linux/_ops.py +3 -3
  4. build/torch210-cxx11-cu126-aarch64-linux/metadata.json +1 -1
  5. build/torch210-cxx11-cu128-aarch64-linux/__init__.py +11 -11
  6. build/torch210-cxx11-cu128-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
  7. build/torch210-cxx11-cu128-aarch64-linux/_ops.py +3 -3
  8. build/torch210-cxx11-cu128-aarch64-linux/metadata.json +1 -1
  9. build/torch210-cxx11-cu130-aarch64-linux/__init__.py +11 -11
  10. build/torch210-cxx11-cu130-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
  11. build/torch210-cxx11-cu130-aarch64-linux/_ops.py +3 -3
  12. build/torch210-cxx11-cu130-aarch64-linux/metadata.json +1 -1
  13. build/torch211-cxx11-cu126-aarch64-linux/__init__.py +11 -11
  14. build/torch211-cxx11-cu126-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
  15. build/torch211-cxx11-cu126-aarch64-linux/_ops.py +3 -3
  16. build/torch211-cxx11-cu126-aarch64-linux/metadata.json +1 -1
  17. build/torch211-cxx11-cu128-aarch64-linux/__init__.py +11 -11
  18. build/torch211-cxx11-cu128-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
  19. build/torch211-cxx11-cu128-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
  20. build/torch211-cxx11-cu128-aarch64-linux/_ops.py +3 -3
  21. build/torch211-cxx11-cu128-aarch64-linux/metadata.json +1 -1
  22. build/torch211-cxx11-cu130-aarch64-linux/__init__.py +11 -11
  23. build/torch211-cxx11-cu130-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
  24. build/torch211-cxx11-cu130-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
  25. build/torch211-cxx11-cu130-aarch64-linux/_ops.py +3 -3
  26. build/torch211-cxx11-cu130-aarch64-linux/metadata.json +1 -1
  27. build/torch212-cxx11-cu126-aarch64-linux/__init__.py +11 -11
  28. build/torch212-cxx11-cu126-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
  29. build/torch212-cxx11-cu126-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
  30. build/torch212-cxx11-cu126-aarch64-linux/_ops.py +3 -3
  31. build/torch212-cxx11-cu126-aarch64-linux/metadata.json +1 -1
  32. build/torch212-cxx11-cu130-aarch64-linux/__init__.py +11 -11
  33. build/torch212-cxx11-cu130-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
  34. build/torch212-cxx11-cu130-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
  35. build/torch212-cxx11-cu130-aarch64-linux/_ops.py +3 -3
  36. build/torch212-cxx11-cu130-aarch64-linux/metadata.json +1 -1
  37. build/torch212-cxx11-cu132-aarch64-linux/__init__.py +11 -11
  38. build/torch212-cxx11-cu132-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
  39. build/torch212-cxx11-cu132-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
  40. build/torch212-cxx11-cu132-aarch64-linux/_ops.py +3 -3
  41. build/torch212-cxx11-cu132-aarch64-linux/metadata.json +1 -1
build/torch210-cxx11-cu126-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch210-cxx11-cu126-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:668466c8d370b477243c7bc804dfa390d5decc4e76e14fd3fe305d08d64bf8f4
3
- size 3228128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:149373c97cf420599b326034ab20390b37e04a904a71377d33bb78106dba719f
3
+ size 3238088
build/torch210-cxx11-cu126-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch210-cxx11-cu126-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch210-cxx11-cu128-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch210-cxx11-cu128-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:41eac5fc79121d37f9b082974ef1379888ebb4a53170fa8be4793ee48d1b94c5
3
- size 4538960
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed76cc93898a7c53ec46ff9324e0244fc70ab03348f0e6ba1c2a89075712e79f
3
+ size 4549072
build/torch210-cxx11-cu128-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch210-cxx11-cu128-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch210-cxx11-cu130-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch210-cxx11-cu130-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d0b86fa4b2e20bb64dd6de0a95f43b489cc53dd678d8a3ec2a25dd580ec255d7
3
- size 4294136
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc3176d1cd061c0f605390c4ba6669542f577d1dc7670e2a9983c5e8da81b3d2
3
+ size 4304160
build/torch210-cxx11-cu130-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch210-cxx11-cu130-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch211-cxx11-cu126-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch211-cxx11-cu126-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0893db5964e55210e2517c9397e225ccae2b0f44139a511382dc6f5f03965a00
3
- size 3224336
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7661522cba8bdcb098bc71a855e5b3f742aa8e0265e54c0e2bf831925ac2b63d
3
+ size 3234288
build/torch211-cxx11-cu126-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch211-cxx11-cu126-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch211-cxx11-cu128-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch211-cxx11-cu128-aarch64-linux/_activation_cuda_5c4052d.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb433deb1f5549dc62b9db9c056317896ee5e004eb5c320a99798f0ed578e25a
3
+ size 4545304
build/torch211-cxx11-cu128-aarch64-linux/_activation_cuda_c575345.abi3.so DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:01ec84c4b54c59948ddd052dac14f20c6eab419eb65890ffd39d75fda8e12c8f
3
- size 4535168
 
 
 
 
build/torch211-cxx11-cu128-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch211-cxx11-cu128-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch211-cxx11-cu130-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch211-cxx11-cu130-aarch64-linux/_activation_cuda_5c4052d.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:039a31628c2b045d3a2cc099a41e7a7b71d2742173cd765faf95e4d741379f66
3
+ size 4300368
build/torch211-cxx11-cu130-aarch64-linux/_activation_cuda_c575345.abi3.so DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:94dd7f3b3ce9727238afa3c9f3e16d409602ef87a3ac88411a20b1c486ddca14
3
- size 4290344
 
 
 
 
build/torch211-cxx11-cu130-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch211-cxx11-cu130-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch212-cxx11-cu126-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch212-cxx11-cu126-aarch64-linux/_activation_cuda_5c4052d.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:535e5ecec0958a0abcc6f6f22b4f035bc220501c3af6f215bca4963610050ae0
3
+ size 3227352
build/torch212-cxx11-cu126-aarch64-linux/_activation_cuda_c575345.abi3.so DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d75df4acff0e485f742af641a6cd15390f5bdf21d532ae59a263d09f0f99006b
3
- size 3227424
 
 
 
 
build/torch212-cxx11-cu126-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch212-cxx11-cu126-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch212-cxx11-cu130-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch212-cxx11-cu130-aarch64-linux/_activation_cuda_5c4052d.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abf684d68c4646085d527e1840b232a066e982434f4d8c0090ac718e9ba1a4f7
3
+ size 4293424
build/torch212-cxx11-cu130-aarch64-linux/_activation_cuda_c575345.abi3.so DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:db2454fa7a05ec65fc9c69894d7694a776d71f0e790f25667d78fbdacee6ddea
3
- size 4293408
 
 
 
 
build/torch212-cxx11-cu130-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch212-cxx11-cu130-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
build/torch212-cxx11-cu132-aarch64-linux/__init__.py CHANGED
@@ -5,56 +5,56 @@ from ._ops import ops
5
  from . import layers
6
 
7
 
8
- def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
- def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> None:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
- def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
- def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> None:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
- def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> None:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
- def gelu(out: torch.Tensor, x: torch.Tensor) -> None:
34
  ops.gelu(out, x)
35
  return out
36
 
37
- def silu(out: torch.Tensor, x: torch.Tensor) -> None:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
- def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> None:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
- def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> None:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
- def gelu_new(out: torch.Tensor, x: torch.Tensor) -> None:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
- def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> None:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
 
5
  from . import layers
6
 
7
 
8
+ def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
9
  ops.silu_and_mul(out, x)
10
  return out
11
 
12
 
13
+ def mul_and_silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
14
  ops.mul_and_silu(out, x)
15
  return out
16
 
17
 
18
+ def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
19
  ops.gelu_and_mul(out, x)
20
  return out
21
 
22
 
23
+ def gelu_tanh_and_mul(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
24
  ops.gelu_tanh_and_mul(out, x)
25
  return out
26
 
27
 
28
+ def fatrelu_and_mul(out: torch.Tensor, x: torch.Tensor, threshold: float = 0.0) -> torch.Tensor:
29
  ops.fatrelu_and_mul(out, x, threshold)
30
  return out
31
 
32
 
33
+ def gelu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
34
  ops.gelu(out, x)
35
  return out
36
 
37
+ def silu(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
38
  ops.silu(out, x)
39
  return out
40
 
41
 
42
+ def gelu_tanh(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
43
  ops.gelu_tanh(out, x)
44
  return out
45
 
46
 
47
+ def gelu_fast(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
48
  ops.gelu_fast(out, x)
49
  return out
50
 
51
 
52
+ def gelu_new(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
53
  ops.gelu_new(out, x)
54
  return out
55
 
56
 
57
+ def gelu_quick(out: torch.Tensor, x: torch.Tensor) -> torch.Tensor:
58
  ops.gelu_quick(out, x)
59
  return out
60
 
build/torch212-cxx11-cu132-aarch64-linux/_activation_cuda_5c4052d.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7592f59ebaef3c933a97bb6de9f40c532adb785a5ff32f0370fcae24479fc87b
3
+ size 4361560
build/torch212-cxx11-cu132-aarch64-linux/_activation_cuda_c575345.abi3.so DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6a8cff8cbb622faddaebd560d24a11099484cbbea661774d28f34a8f34107014
3
- size 4361544
 
 
 
 
build/torch212-cxx11-cu132-aarch64-linux/_ops.py CHANGED
@@ -1,9 +1,9 @@
1
  import torch
2
- from . import _activation_cuda_c575345
3
- ops = torch.ops._activation_cuda_c575345
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
- return f"_activation_cuda_c575345::{op_name}"
 
1
  import torch
2
+ from . import _activation_cuda_5c4052d
3
+ ops = torch.ops._activation_cuda_5c4052d
4
 
5
  def add_op_namespace_prefix(op_name: str):
6
  """
7
  Prefix op by namespace.
8
  """
9
+ return f"_activation_cuda_5c4052d::{op_name}"
build/torch212-cxx11-cu132-aarch64-linux/metadata.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "activation",
3
- "id": "_activation_cuda_c575345",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],
 
1
  {
2
  "name": "activation",
3
+ "id": "_activation_cuda_5c4052d",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "python-depends": [],