Skip to content

Commit

Permalink
Merge branch 'davschneller/compile-fixes' into davschneller/ci
Browse files Browse the repository at this point in the history
  • Loading branch information
davschneller committed May 21, 2024
2 parents 3df7c30 + 759bf14 commit a774544
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pspamm/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
4 changes: 2 additions & 2 deletions pspamm/codegen/architectures/arm/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def bcst_alpha_beta(self,
) -> Block:

asm = block("Broadcast alpha and beta so that efficient multiplication is possible")
asm.add(mov(alpha_reg[0], alpha_reg[1], True))
asm.add(mov(beta_reg[0], beta_reg[1], True))
# asm.add(mov(alpha_reg[0], alpha_reg[1], True))
# asm.add(mov(beta_reg[0], beta_reg[1], True))
return asm

def make_scaling_offsets(self,
Expand Down
4 changes: 2 additions & 2 deletions pspamm/codegen/architectures/arm_sve/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def bcst_alpha_beta(self,
) -> Block:

asm = block("Broadcasted alpha and beta into z0/z1 so that efficient multiplication is possible")
asm.add(mov(alpha_reg[0], alpha_reg[1], True))
asm.add(mov(beta_reg[0], beta_reg[1], True))
# asm.add(mov(alpha_reg[0], alpha_reg[1], True))
# asm.add(mov(beta_reg[0], beta_reg[1], True))
return asm

def make_scaling_offsets(self,
Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "PspaMM"
description="Inline assembly generator for sparse matrix multiplications"
Expand All @@ -20,11 +24,6 @@ classifiers= [
"Operating System :: OS Independent",
]
dynamic = ["version", "readme", "dependencies"]
dependencies = {file = ["requirements.txt"]}

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
Expand Down

0 comments on commit a774544

Please sign in to comment.