kernel
danieldk HF Staff commited on
Commit
5afb550
·
1 Parent(s): d595dec

Build (aarch64)

Browse files
build/torch26-cxx11-cu126-aarch64-linux/rotary/__init__.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Tuple
2
+ import torch
3
+
4
+ from ._ops import ops
5
+
6
+
7
+ def apply_rotary(
8
+ x1: torch.Tensor,
9
+ x2: torch.Tensor,
10
+ cos: torch.Tensor,
11
+ sin: torch.Tensor,
12
+ out1: torch.Tensor,
13
+ out2: torch.Tensor,
14
+ conj: bool,
15
+ ):
16
+ ops.apply_rotary(x1, x2, cos, sin, out1, out2, conj)
17
+
18
+
19
+ __all__ = ["apply_rotary"]
build/torch26-cxx11-cu126-aarch64-linux/rotary/_ops.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from . import _rotary_c7fa2df
3
+ ops = torch.ops._rotary_c7fa2df
4
+
5
+ def add_op_namespace_prefix(op_name: str):
6
+ """
7
+ Prefix op by namespace.
8
+ """
9
+ return f"_rotary_c7fa2df::{op_name}"
build/torch26-cxx11-cu126-aarch64-linux/rotary/_rotary_c7fa2df.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e69e199dfcca72e34cfe89181fabe5833130695daf90ae6534e3deb16520e6ab
3
+ size 4150360
build/torch26-cxx98-cu126-aarch64-linux/rotary/__init__.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Tuple
2
+ import torch
3
+
4
+ from ._ops import ops
5
+
6
+
7
+ def apply_rotary(
8
+ x1: torch.Tensor,
9
+ x2: torch.Tensor,
10
+ cos: torch.Tensor,
11
+ sin: torch.Tensor,
12
+ out1: torch.Tensor,
13
+ out2: torch.Tensor,
14
+ conj: bool,
15
+ ):
16
+ ops.apply_rotary(x1, x2, cos, sin, out1, out2, conj)
17
+
18
+
19
+ __all__ = ["apply_rotary"]
build/torch26-cxx98-cu126-aarch64-linux/rotary/_ops.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from . import _rotary_c7fa2df
3
+ ops = torch.ops._rotary_c7fa2df
4
+
5
+ def add_op_namespace_prefix(op_name: str):
6
+ """
7
+ Prefix op by namespace.
8
+ """
9
+ return f"_rotary_c7fa2df::{op_name}"
build/torch26-cxx98-cu126-aarch64-linux/rotary/_rotary_c7fa2df.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4760c0f2828f72f635efc87fa5f60469021e22fd56dbfd16773b1643af226542
3
+ size 4146880
build/torch27-cxx11-cu126-aarch64-linux/rotary/__init__.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Tuple
2
+ import torch
3
+
4
+ from ._ops import ops
5
+
6
+
7
+ def apply_rotary(
8
+ x1: torch.Tensor,
9
+ x2: torch.Tensor,
10
+ cos: torch.Tensor,
11
+ sin: torch.Tensor,
12
+ out1: torch.Tensor,
13
+ out2: torch.Tensor,
14
+ conj: bool,
15
+ ):
16
+ ops.apply_rotary(x1, x2, cos, sin, out1, out2, conj)
17
+
18
+
19
+ __all__ = ["apply_rotary"]
build/torch27-cxx11-cu126-aarch64-linux/rotary/_ops.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from . import _rotary_c7fa2df
3
+ ops = torch.ops._rotary_c7fa2df
4
+
5
+ def add_op_namespace_prefix(op_name: str):
6
+ """
7
+ Prefix op by namespace.
8
+ """
9
+ return f"_rotary_c7fa2df::{op_name}"
build/torch27-cxx11-cu126-aarch64-linux/rotary/_rotary_c7fa2df.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:858d520f8584527b10dd1d393f46a41fb16b15510beb50b4b59d9692cf95a2dc
3
+ size 5723448
build/torch27-cxx11-cu128-aarch64-linux/rotary/__init__.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Tuple
2
+ import torch
3
+
4
+ from ._ops import ops
5
+
6
+
7
+ def apply_rotary(
8
+ x1: torch.Tensor,
9
+ x2: torch.Tensor,
10
+ cos: torch.Tensor,
11
+ sin: torch.Tensor,
12
+ out1: torch.Tensor,
13
+ out2: torch.Tensor,
14
+ conj: bool,
15
+ ):
16
+ ops.apply_rotary(x1, x2, cos, sin, out1, out2, conj)
17
+
18
+
19
+ __all__ = ["apply_rotary"]
build/torch27-cxx11-cu128-aarch64-linux/rotary/_ops.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from . import _rotary_c7fa2df
3
+ ops = torch.ops._rotary_c7fa2df
4
+
5
+ def add_op_namespace_prefix(op_name: str):
6
+ """
7
+ Prefix op by namespace.
8
+ """
9
+ return f"_rotary_c7fa2df::{op_name}"
build/torch27-cxx11-cu128-aarch64-linux/rotary/_rotary_c7fa2df.abi3.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cf05adace4b9ee5bcb3227bc81cde1f6a4170e776f81f2f698466c2c0bf097f
3
+ size 7624344