Prompt48 commited on
Commit
227ba4a
·
verified ·
1 Parent(s): 7a1dc8e

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

Browse files
edit//Qwen3-TTS-test//.venv//Lib//site-packages//torch//include//ATen//ops//clamp_min.h ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/clamp_min_ops.h>
21
+
22
+ namespace at {
23
+
24
+
25
+ // aten::clamp_min(Tensor self, Scalar min) -> Tensor
26
+ inline at::Tensor clamp_min(const at::Tensor & self, const at::Scalar & min) {
27
+ return at::_ops::clamp_min::call(self, min);
28
+ }
29
+
30
+ // aten::clamp_min.Tensor(Tensor self, Tensor min) -> Tensor
31
+ inline at::Tensor clamp_min(const at::Tensor & self, const at::Tensor & min) {
32
+ return at::_ops::clamp_min_Tensor::call(self, min);
33
+ }
34
+
35
+ // aten::clamp_min_(Tensor(a!) self, Scalar min) -> Tensor(a!)
36
+ inline at::Tensor & clamp_min_(at::Tensor & self, const at::Scalar & min) {
37
+ return at::_ops::clamp_min_::call(self, min);
38
+ }
39
+
40
+ // aten::clamp_min_.Tensor(Tensor(a!) self, Tensor min) -> Tensor(a!)
41
+ inline at::Tensor & clamp_min_(at::Tensor & self, const at::Tensor & min) {
42
+ return at::_ops::clamp_min__Tensor::call(self, min);
43
+ }
44
+
45
+ // aten::clamp_min.out(Tensor self, Scalar min, *, Tensor(a!) out) -> Tensor(a!)
46
+ inline at::Tensor & clamp_min_out(at::Tensor & out, const at::Tensor & self, const at::Scalar & min) {
47
+ return at::_ops::clamp_min_out::call(self, min, out);
48
+ }
49
+ // aten::clamp_min.out(Tensor self, Scalar min, *, Tensor(a!) out) -> Tensor(a!)
50
+ inline at::Tensor & clamp_min_outf(const at::Tensor & self, const at::Scalar & min, at::Tensor & out) {
51
+ return at::_ops::clamp_min_out::call(self, min, out);
52
+ }
53
+
54
+ // aten::clamp_min.Tensor_out(Tensor self, Tensor min, *, Tensor(a!) out) -> Tensor(a!)
55
+ inline at::Tensor & clamp_min_out(at::Tensor & out, const at::Tensor & self, const at::Tensor & min) {
56
+ return at::_ops::clamp_min_Tensor_out::call(self, min, out);
57
+ }
58
+ // aten::clamp_min.Tensor_out(Tensor self, Tensor min, *, Tensor(a!) out) -> Tensor(a!)
59
+ inline at::Tensor & clamp_min_outf(const at::Tensor & self, const at::Tensor & min, at::Tensor & out) {
60
+ return at::_ops::clamp_min_Tensor_out::call(self, min, out);
61
+ }
62
+
63
+ }