Skip to content

Commit

Permalink
fix tensor sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
lpawela committed Apr 24, 2024
1 parent 2b3adb4 commit 9cc01fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SpinGlassTensors"
uuid = "7584fc6a-5a23-4eeb-8277-827aab0146ea"
authors = ["Anna Maria Dziubyna <annamariadziubyna@gmail.com>", "Tomasz Śmierzchalski <smierzchalski.tomek@gmail.com>", "Bartłomiej Gardas <bartek.gardas@gmail.com>", "Konrad Jałowiecki <dexter2206@gmail.com>", "Łukasz Pawela <lukasz.pawela@gmail.com>", "Marek M. Rams <marekrams@gmail.com>"]
version = "1.1.0"
version = "1.1.1"

[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
Expand Down
2 changes: 1 addition & 1 deletion src/contractions/virtual.jl
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ function update_env_right(

tmp1 = alloc_zeros(R, onGPU, (srb, srpb * srpct))
tmp2 = alloc_undef(R, onGPU, (slb * slpb, srpct))
tmp3 = alloc_zeros(R, onGPU, (slb * slpb, srpc, srpt))
tmp3 = alloc_zeros(R, onGPU, (slb * slpb, srpc * srpt))
tmp5 = alloc_undef(R, onGPU, (slb * slpb, slpc, srpt))
tmp8 = alloc_undef(R, onGPU, (slb * slpbc, slpt))

Expand Down

2 comments on commit 9cc01fa

@lpawela
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/105590

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.1 -m "<description of version>" 9cc01fa19b32694002ac92dd488f9a288c091207
git push origin v1.1.1

Please sign in to comment.