mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Fix broken URLs (#152237)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/152237 Approved by: https://github.com/huydhn, https://github.com/malfet
This commit is contained in:
committed by
PyTorch MergeBot
parent
cbcc03c2ad
commit
e2f9759bd0
@ -52,7 +52,7 @@ class TestQuantizedFunctionalOps(QuantizationTestCase):
|
||||
# Make sure the results match
|
||||
# assert_array_almost_equal compares using the following formula:
|
||||
# abs(desired-actual) < 1.5 * 10**(-decimal)
|
||||
# (https://docs.scipy.org/doc/numpy/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# (https://numpy.org/doc/stable/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# We use decimal = 0 to ignore off-by-1 differences between reference
|
||||
# and test. Off-by-1 differences arise due to the order of round and
|
||||
# zero_point addition operation, i.e., if addition followed by round is
|
||||
|
@ -320,7 +320,7 @@ class TestStaticQuantizedModule(QuantizationTestCase):
|
||||
# Make sure the results match
|
||||
# assert_array_almost_equal compares using the following formula:
|
||||
# abs(desired-actual) < 1.5 * 10**(-decimal)
|
||||
# (https://docs.scipy.org/doc/numpy/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# (https://numpy.org/doc/stable/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# We use decimal = 0 to ignore off-by-1 differences between reference
|
||||
# and test. Off-by-1 differences arise due to the order of round and
|
||||
# zero_point addition operation, i.e., if addition followed by round is
|
||||
|
@ -5200,7 +5200,7 @@ class TestQuantizedConv(TestCase):
|
||||
# Make sure the results match
|
||||
# assert_array_almost_equal compares using the following formula:
|
||||
# abs(desired-actual) < 1.5 * 10**(-decimal)
|
||||
# (https://docs.scipy.org/doc/numpy/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# (https://numpy.org/doc/stable/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# We use decimal = 0 to ignore off-by-1 differences between
|
||||
# reference and test. Off-by-1 differences arise due to the order of
|
||||
# round and zero_point addition operation, i.e., if addition
|
||||
@ -6935,7 +6935,7 @@ class TestQuantizedConv(TestCase):
|
||||
# Make sure the results match
|
||||
# assert_array_almost_equal compares using the following formula:
|
||||
# abs(desired-actual) < 1.5 * 10**(-decimal)
|
||||
# (https://docs.scipy.org/doc/numpy/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# (https://numpy.org/doc/stable/reference/generated/numpy.testing.assert_almost_equal.html)
|
||||
# We use decimal = 0 to ignore off-by-1 differences between
|
||||
# reference and test. Off-by-1 differences arise due to the order of
|
||||
# round and zero_point addition operation, i.e., if addition
|
||||
|
Reference in New Issue
Block a user