HomeSort by relevance Sort by last modified time
    Searched refs:rhs_np (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/contrib/solvers/python/kernel_tests/
least_squares_test.py 46 rhs_np = np.random.uniform(
53 rhs = constant_op.constant(rhs_np)
62 cgls_val = sess.run(cgls_graph, feed_dict={a: a_np, rhs: rhs_np})
64 norm_s0 = np.linalg.norm(np.dot(a_np.T, rhs_np))
69 r_np = rhs_np - np.dot(a_np, cgls_val.x)
linear_equations_test.py 52 rhs_np = np.random.uniform(
54 x_np = np.zeros_like(rhs_np)
60 rhs = constant_op.constant(rhs_np)
89 rhs: rhs_np,
93 norm_r0 = np.linalg.norm(rhs_np)
98 r_np = rhs_np - np.dot(a_np, cg_val.x)

Completed in 2698 milliseconds