Prompt48 commited on
Commit
ca71dac
·
verified ·
1 Parent(s): 23b6539

Upload edit\Qwen3-TTS-test\.venv\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h with huggingface_hub

Browse files
edit//Qwen3-TTS-test//.venv//Lib//site-packages//torch//include//ATen//ops//logaddexp2.h ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #pragma once
2
+
3
+ // @generated by torchgen/gen.py from Function.h
4
+
5
+ #include <ATen/Context.h>
6
+ #include <ATen/DeviceGuard.h>
7
+ #include <ATen/TensorUtils.h>
8
+ #include <ATen/TracerMode.h>
9
+ #include <ATen/core/Generator.h>
10
+ #include <ATen/core/Reduction.h>
11
+ #include <ATen/core/Tensor.h>
12
+ #include <c10/core/Scalar.h>
13
+ #include <c10/core/Storage.h>
14
+ #include <c10/core/TensorOptions.h>
15
+ #include <c10/util/Deprecated.h>
16
+ #include <optional>
17
+
18
+
19
+
20
+ #include <ATen/ops/logaddexp2_ops.h>
21
+
22
+ namespace at {
23
+
24
+
25
+ // aten::logaddexp2.out(Tensor self, Tensor other, *, Tensor(a!) out) -> Tensor(a!)
26
+ inline at::Tensor & logaddexp2_out(at::Tensor & out, const at::Tensor & self, const at::Tensor & other) {
27
+ return at::_ops::logaddexp2_out::call(self, other, out);
28
+ }
29
+ // aten::logaddexp2.out(Tensor self, Tensor other, *, Tensor(a!) out) -> Tensor(a!)
30
+ inline at::Tensor & logaddexp2_outf(const at::Tensor & self, const at::Tensor & other, at::Tensor & out) {
31
+ return at::_ops::logaddexp2_out::call(self, other, out);
32
+ }
33
+
34
+ // aten::logaddexp2(Tensor self, Tensor other) -> Tensor
35
+ inline at::Tensor logaddexp2(const at::Tensor & self, const at::Tensor & other) {
36
+ return at::_ops::logaddexp2::call(self, other);
37
+ }
38
+
39
+ }