Skip to content

Commit

Permalink
Fix row/col parasitics bug (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
bfeinberg authored Apr 2, 2024
1 parent b055e38 commit d9548c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "CrossSim"
description = "Accuracy simulator for analog in-memory computing"
version = "3.0.1"
version = "3.0.2"
license = {text = "BSD 3-Clause License"}
dependencies = [
"numpy",
Expand Down
4 changes: 2 additions & 2 deletions simulator/circuits/array_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ def mvm_parasitics(vector, matrix, params, useMask=False, mask=None, row_in=True
Rp_in = params.xbar.array.parasitics.Rp_row
Rp_out = params.xbar.array.parasitics.Rp_col
else:
Rp_in = params.xbar.array.parasitics.Rp_row
Rp_out = params.xbar.array.parasitics.Rp_col
Rp_in = params.xbar.array.parasitics.Rp_col
Rp_out = params.xbar.array.parasitics.Rp_row

Niters_max = params.simulation.Niters_max_parasitics
Verr_th = params.simulation.Verr_th_mvm
Expand Down

0 comments on commit d9548c0

Please sign in to comment.