Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jerrrrry
infinicore
Commits
52f0dcf0
"dockerfile/cuda13.0.dockerfile" did not exist on "2c88db907f6738472084185e0ec0c6f6cae20e89"
Unverified
Commit
52f0dcf0
authored
Feb 12, 2026
by
thatPepe
Committed by
GitHub
Feb 12, 2026
Browse files
Merge pull request #1019 from InfiniTensor/issue/1008
Issue/1008
parents
d0f405ce
68026bd1
Changes
292
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
test/infinicore/ops/fold.py
test/infinicore/ops/fold.py
+1
-1
test/infinicore/ops/frac.py
test/infinicore/ops/frac.py
+1
-1
test/infinicore/ops/fractional_max_pool2d.py
test/infinicore/ops/fractional_max_pool2d.py
+1
-1
test/infinicore/ops/fractional_max_pool3d.py
test/infinicore/ops/fractional_max_pool3d.py
+1
-1
test/infinicore/ops/frexp.py
test/infinicore/ops/frexp.py
+1
-1
test/infinicore/ops/full.py
test/infinicore/ops/full.py
+1
-1
test/infinicore/ops/full_like.py
test/infinicore/ops/full_like.py
+1
-1
test/infinicore/ops/gather.py
test/infinicore/ops/gather.py
+1
-1
test/infinicore/ops/gaussian_nll_loss.py
test/infinicore/ops/gaussian_nll_loss.py
+1
-1
test/infinicore/ops/gcd.py
test/infinicore/ops/gcd.py
+1
-1
test/infinicore/ops/glu.py
test/infinicore/ops/glu.py
+1
-1
test/infinicore/ops/group_norm.py
test/infinicore/ops/group_norm.py
+1
-1
test/infinicore/ops/gt.py
test/infinicore/ops/gt.py
+1
-1
test/infinicore/ops/gumbel_softmax.py
test/infinicore/ops/gumbel_softmax.py
+1
-1
test/infinicore/ops/hardshrink.py
test/infinicore/ops/hardshrink.py
+1
-1
test/infinicore/ops/hardsigmoid.py
test/infinicore/ops/hardsigmoid.py
+1
-1
test/infinicore/ops/hardswish.py
test/infinicore/ops/hardswish.py
+1
-1
test/infinicore/ops/hardtanh.py
test/infinicore/ops/hardtanh.py
+1
-1
test/infinicore/ops/heaviside.py
test/infinicore/ops/heaviside.py
+1
-1
test/infinicore/ops/hinge_embedding_loss.py
test/infinicore/ops/hinge_embedding_loss.py
+1
-1
No files found.
test/infinicore/ops/fold.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (in_shape, in_strides_or_None, output_size, kernel_size, dilation, padding, stride)
...
...
test/infinicore/ops/frac.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/fractional_max_pool2d.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (in_shape, in_strides_or_None, kernel_size, output_size_or_None, return_indices)
...
...
test/infinicore/ops/fractional_max_pool3d.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (in_shape, in_strides_or_None, kernel_size, output_size_or_None, return_indices)
...
...
test/infinicore/ops/frexp.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (in_shape, in_strides_or_None)
...
...
test/infinicore/ops/full.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
from
framework.datatypes
import
to_torch_dtype
...
...
test/infinicore/ops/full_like.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
from
framework.datatypes
import
to_torch_dtype
...
...
test/infinicore/ops/gather.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/gaussian_nll_loss.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (input_shape, var_present_bool, full_or_None, eps_or_None, input_strides_or_None)
...
...
test/infinicore/ops/gcd.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/glu.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/group_norm.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (input_shape, input_strides_or_None, num_groups, weight_bias_present_bool, eps_or_None)
...
...
test/infinicore/ops/gt.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/gumbel_softmax.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/hardshrink.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/hardsigmoid.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/hardswish.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/hardtanh.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/heaviside.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
(
BaseOperatorTest
,
TensorSpec
,
...
...
test/infinicore/ops/hinge_embedding_loss.py
View file @
52f0dcf0
...
...
@@ -3,8 +3,8 @@ import os
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
))
import
torch
import
infinicore
import
torch
from
framework
import
BaseOperatorTest
,
TensorSpec
,
TestCase
,
GenericTestRunner
# Test cases format: (input_shape, target_shape, input_strides_or_None, target_strides_or_None, margin_or_None)
...
...
Prev
1
…
3
4
5
6
7
8
9
10
11
…
15
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment