Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcheng15 committed Dec 12, 2024
1 parent c5b2957 commit 37bf4ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sam/onyx/generate_matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,8 @@ def create_matrix_from_point_list(name, pt_list, shape, use_fp=False, base=16) -
else:
mat_base = mat_base.astype(numpy.uint16, casting='unsafe')

mg = MatrixGenerator(name=f"{name}", shape=shape, sparsity=0.7, format='CSF', dump_dir=None, tensor=mat_base, use_fp=use_fp)
mg = MatrixGenerator(name=f"{name}", shape=shape, sparsity=0.7, format='CSF',
dump_dir=None, tensor=mat_base, use_fp=use_fp)
return mg


Expand Down

0 comments on commit 37bf4ff

Please sign in to comment.