def test_sin_vector_1(self): a = np.random.randn(100) np.testing.assert_almost_equal(bm.sin(a), np.sin(a), decimal=8)
def test_sin_scalar_2(self): np.testing.assert_almost_equal(bm.sin(-np.pi), np.sin(-np.pi), decimal=8)
def test_sin_scalar_1(self): a = np.random.rand() np.testing.assert_almost_equal(bm.sin(a), np.sin(a), decimal=8)
def test_sin_scalar_2(self): np.testing.assert_almost_equal( bm.sin(-np.pi), np.sin(-np.pi), decimal=8)