Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Dropped unnecessary NDArray cast for potrf
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggins committed Feb 5, 2020
1 parent 6946c65 commit 8fb0d1a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions benchmark/opperf/nd_operations/linalg_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ def run_linalg_operators_benchmarks(ctx=mx.cpu(), dtype='float32', profiler='nat
dtype=dtype,
ctx=ctx,
profiler=profiler,
inputs=[{"A": mx.nd.array([[1, 0],
[0, 1]])},
{"A": mx.nd.array([[2, -1, 0],
[-1, 2, -1],
[0, -1, 2]])}],
inputs=[{"A": [[1, 0],
[0, 1]]},
{"A": [[2, -1, 0],
[-1, 2, -1],
[0, -1, 2]]}],
warmup=warmup,
runs=runs)

Expand Down

0 comments on commit 8fb0d1a

Please sign in to comment.