Skip to content

Commit

Permalink
[jlse-run] remove debugging duplicate einsum
Browse files Browse the repository at this point in the history
  • Loading branch information
danlkv committed Oct 10, 2020
1 parent cda29fc commit ee7974d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions qtensor/ProcessingFrameworks.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,6 @@ def merge_with_result(result_data, result_indices, tensor):
# \sum_k A_{kfm} * B_{kfn} = C_{fmn}
c = np.empty((F, M, N), dtype=np.complex128)
tcontract.mkl_contract_sum(a, b, c)
c_einsum = np.einsum('kfm, kfn -> fmn', a, b)
assert np.allclose(c_einsum, c)

# ---- Post-process output
result_indices = tuple(sorted(
Expand Down

1 comment on commit ee7974d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automake run result

Performance summary:

===Results===
Total time: 80.923
Simulator fitted flops: 0.046311 G
Matmul flops: 204.3 G
Simulator optimality: 0.00022668319088030888

Backend used: mkl (full)

Performance plot:

Run date: Sat Oct 10 21:50:16 UTC 2020

Please sign in to comment.