Skip to content

Commit

Permalink
final docs update, bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Dec 6, 2019
1 parent c84a6b8 commit cc512e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "TensorOperations"
uuid = "6aa20fa7-93e2-5fca-9bc0-fbd0db3c71a2"
authors = ["Jutho Haegeman"]
version = "2.0.0"
version = "2.0.1"

[deps]
LRUCache = "8ac3fa9e-de4c-5943-b1dc-09c6b5f20637"
Expand Down
4 changes: 2 additions & 2 deletions docs/src/indexnotation.md
Expand Up @@ -55,7 +55,7 @@ and [`TensorOperations.contract!`](@ref). Temporaries are created where necessar
by default be saved to a global cache, so that they can be reused upon a next iteration or
next call to the function in which the `@tensor` call is used. When experimenting in the
REPL where every tensor expression is only used a single time, it might be better to use
[`disable_cache()`](@ref), though no real harm comes from using the cache (except higher
[`TensorOperations.disable_cache`](@ref), though no real harm comes from using the cache (except higher
memory usage). By default, the cache is allowed to take up to the minimum of either one
gigabyte or 25% of the total machine memory, though this is fully configurable. We refer to
the section on [Cache for temporaries](@ref) for further details.
Expand Down Expand Up @@ -277,7 +277,7 @@ make the interaction with the cache hurtful rather than advantageous.
## Multithreading and GPU evaluation of tensor contractions with `@cutensor`
Every index expression will be evaluated as a sequence of elementary tensor operations,
i.e. permuted additions, partial traces and contractions, which are implemented for strided
arrays as discussed in [Package Features](@ref). In particular, these implementations rely
arrays as discussed in [Package features](@ref). In particular, these implementations rely
on [Strided.jl](https://github.com/Jutho/Strided.jl), and we refer to this package for a
full specification of which arrays are supported. As a rule of thumb, `Array`s from Julia
base, as well as `view`s thereof if sliced with a combination of `Integer`s and `Range`s.
Expand Down

2 comments on commit cc512e3

@Jutho
Copy link
Owner Author

@Jutho Jutho commented on cc512e3 Dec 6, 2019

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/6315

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v2.0.1 -m "<description of version>" cc512e34b56b367a33d08684e045474aa37b3d0a
git push origin v2.0.1

Please sign in to comment.