File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -746,21 +746,6 @@ TEST_F(OpMulOutTest, DynamicShapeUnbound) {
746746 EXPECT_TENSOR_CLOSE (out, expected_result);
747747}
748748
749- // >>> torch.ops.aten.mul(torch.tensor([100], dtype=torch.int8),
750- // torch.tensor([100], dtype=torch.int8), out=torch.zeros([1],
751- // dtype=torch.long)) tensor([16])
752- TEST_F (OpMulOutTest, MixedIntegerDtypeMatchesATen) {
753- TensorFactory<ScalarType::Char> tf_in;
754- TensorFactory<ScalarType::Long> tf_out;
755-
756- Tensor in = tf_in.make ({1 }, {100 });
757- Tensor out = tf_out.zeros ({1 });
758- Tensor ret = op_mul_out (in, in, out);
759-
760- Tensor expected = tf_out.make ({1 }, {16 });
761- EXPECT_TENSOR_CLOSE (out, expected);
762- }
763-
764749TEST_F (OpMulScalarOutTest, SanityCheck) {
765750 TensorFactory<ScalarType::Bool> tf_a;
766751 TensorFactory<ScalarType::Float> tf_out;
You can’t perform that action at this time.
0 commit comments