コード例 #1
0
ファイル: test_qb.py プロジェクト: zihao12/ristretto
def test_rqb_block_float64():
    m, k = 100, 10
    A = np.random.randn(m, k).astype(np.float64)
    A = A.dot(A.T)

    Q, B = compute_rqb(A, k, oversample=5, n_subspace=2, n_blocks=4)
    Ak = Q.dot(B)

    assert relative_error(A, Ak) < atol_float64
コード例 #2
0
ファイル: test_qb.py プロジェクト: zihao12/ristretto
def test_rqb_complex128():
    m, k = 100, 10
    A = np.random.randn(m, k).astype(np.float64) + \
            1j * np.random.randn(m, k).astype(np.float64)
    A = A.dot(A.conj().T)

    Q, B = compute_rqb(A, k, oversample=5, n_subspace=2)
    Ak = Q.dot(B)

    assert relative_error(A, Ak) < atol_float64