Instructions to use replicate/activation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use replicate/activation with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("replicate/activation") - Notebooks
- Google Colab
- Kaggle
Uploaded using `kernel-builder`.
Browse files- build/torch210-cxx11-cu126-aarch64-linux/__init__.py +11 -11
- build/torch210-cxx11-cu126-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
- build/torch210-cxx11-cu126-aarch64-linux/_ops.py +3 -3
- build/torch210-cxx11-cu126-aarch64-linux/metadata.json +1 -1
- build/torch210-cxx11-cu128-aarch64-linux/__init__.py +11 -11
- build/torch210-cxx11-cu128-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
- build/torch210-cxx11-cu128-aarch64-linux/_ops.py +3 -3
- build/torch210-cxx11-cu128-aarch64-linux/metadata.json +1 -1
- build/torch210-cxx11-cu130-aarch64-linux/__init__.py +11 -11
- build/torch210-cxx11-cu130-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
- build/torch210-cxx11-cu130-aarch64-linux/_ops.py +3 -3
- build/torch210-cxx11-cu130-aarch64-linux/metadata.json +1 -1
- build/torch211-cxx11-cu126-aarch64-linux/__init__.py +11 -11
- build/torch211-cxx11-cu126-aarch64-linux/{_activation_cuda_c575345.abi3.so → _activation_cuda_5c4052d.abi3.so} +2 -2
- build/torch211-cxx11-cu126-aarch64-linux/_ops.py +3 -3
- build/torch211-cxx11-cu126-aarch64-linux/metadata.json +1 -1
- build/torch211-cxx11-cu128-aarch64-linux/__init__.py +11 -11
- build/torch211-cxx11-cu128-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
- build/torch211-cxx11-cu128-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
- build/torch211-cxx11-cu128-aarch64-linux/_ops.py +3 -3
- build/torch211-cxx11-cu128-aarch64-linux/metadata.json +1 -1
- build/torch211-cxx11-cu130-aarch64-linux/__init__.py +11 -11
- build/torch211-cxx11-cu130-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
- build/torch211-cxx11-cu130-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
- build/torch211-cxx11-cu130-aarch64-linux/_ops.py +3 -3
- build/torch211-cxx11-cu130-aarch64-linux/metadata.json +1 -1
- build/torch212-cxx11-cu126-aarch64-linux/__init__.py +11 -11
- build/torch212-cxx11-cu126-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
- build/torch212-cxx11-cu126-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
- build/torch212-cxx11-cu126-aarch64-linux/_ops.py +3 -3
- build/torch212-cxx11-cu126-aarch64-linux/metadata.json +1 -1
- build/torch212-cxx11-cu130-aarch64-linux/__init__.py +11 -11
- build/torch212-cxx11-cu130-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
- build/torch212-cxx11-cu130-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
- build/torch212-cxx11-cu130-aarch64-linux/_ops.py +3 -3
- build/torch212-cxx11-cu130-aarch64-linux/metadata.json +1 -1
- build/torch212-cxx11-cu132-aarch64-linux/__init__.py +11 -11
- build/torch212-cxx11-cu132-aarch64-linux/_activation_cuda_5c4052d.abi3.so +3 -0
- build/torch212-cxx11-cu132-aarch64-linux/_activation_cuda_c575345.abi3.so +0 -3
- build/torch212-cxx11-cu132-aarch64-linux/_ops.py +3 -3
- 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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:
|
| 3 |
-
size
|
|
|
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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:
|
| 3 |
-
size
|
|
|
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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:
|
| 3 |
-
size
|
|
|
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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:
|
| 3 |
-
size
|
|
|
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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) ->
|
| 9 |
ops.silu_and_mul(out, x)
|
| 10 |
return out
|
| 11 |
|
| 12 |
|
| 13 |
-
def mul_and_silu(out: torch.Tensor, x: 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) ->
|
| 19 |
ops.gelu_and_mul(out, x)
|
| 20 |
return out
|
| 21 |
|
| 22 |
|
| 23 |
-
def gelu_tanh_and_mul(out: torch.Tensor, x: 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) ->
|
| 29 |
ops.fatrelu_and_mul(out, x, threshold)
|
| 30 |
return out
|
| 31 |
|
| 32 |
|
| 33 |
-
def gelu(out: torch.Tensor, x: torch.Tensor) ->
|
| 34 |
ops.gelu(out, x)
|
| 35 |
return out
|
| 36 |
|
| 37 |
-
def silu(out: torch.Tensor, x: torch.Tensor) ->
|
| 38 |
ops.silu(out, x)
|
| 39 |
return out
|
| 40 |
|
| 41 |
|
| 42 |
-
def gelu_tanh(out: torch.Tensor, x: torch.Tensor) ->
|
| 43 |
ops.gelu_tanh(out, x)
|
| 44 |
return out
|
| 45 |
|
| 46 |
|
| 47 |
-
def gelu_fast(out: torch.Tensor, x: torch.Tensor) ->
|
| 48 |
ops.gelu_fast(out, x)
|
| 49 |
return out
|
| 50 |
|
| 51 |
|
| 52 |
-
def gelu_new(out: torch.Tensor, x: torch.Tensor) ->
|
| 53 |
ops.gelu_new(out, x)
|
| 54 |
return out
|
| 55 |
|
| 56 |
|
| 57 |
-
def gelu_quick(out: torch.Tensor, x: torch.Tensor) ->
|
| 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
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 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": "
|
| 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": [],
|