Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ make a run pass.
Files under `result/<profile>/` are generated by `scripts/run_all.sh <profile>`
and committed on purpose, as the record of a full sweep on a stated machine. Do
not hand edit them, and do not regenerate them as a side effect of an unrelated
change. Use `OUT_DIR=/tmp/...` for probe runs.
change. Use `OUT_DIR=/tmp/...` for probe runs. One profile belongs to one
physical machine, named after the machine, and a sweep from a different machine
goes to its own profile instead of overwriting another machine's numbers: wall
times of the memory heavy arms differ by factors between machines (README known
issue 9). Never put a hostname in a result file, the machine label and the
hardware fields in `run.yaml` carry the identity.

## Upstream is pinned

Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ license = "MIT"
publish = false

[dependencies]
tensor4all-simplett = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-simplett" }
tensor4all-aci = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-aci" }
tensor4all-treetn = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-treetn" }
tensor4all-itensorlike = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-itensorlike" }
tensor4all-quanticstci = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-quanticstci" }
tensor4all-hdf5 = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-hdf5" }
tensor4all-core = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "7cfec2270700d4b218e02f451a340518b84016fb", package = "tensor4all-core" }
tensor4all-simplett = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-simplett" }
tensor4all-aci = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-aci" }
tensor4all-treetn = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-treetn" }
tensor4all-itensorlike = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-itensorlike" }
tensor4all-quanticstci = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-quanticstci" }
tensor4all-hdf5 = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-hdf5" }
tensor4all-core = { git = "https://github.com/tensor4all/tensor4all-rs", rev = "ae655a9ec08a0c3df8c25369b84be0d04e2a2bf3", package = "tensor4all-core" }
num-complex = "0.4"
rand = "0.9"
rand_chacha = "0.9"
Expand Down
Loading
Loading