Skip to content

Remove warning in README.md #151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 20, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/IntegrationTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
package:
- {user: TuringLang, repo: AdvancedPS.jl, ref: releases}
- {user: TuringLang, repo: AdvancedPS.jl, ref: master}
- {user: TuringLang, repo: Turing.jl, ref: master}

steps:
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,15 @@ a = copy(ttask)
@show consume(ttask) # 3
```

Note: The [Turing](https://github.com/TuringLang/Turing.jl)
probabilistic programming language uses this task copying feature in
Notes:

- The [Turing](https://github.com/TuringLang/Turing.jl) probabilistic programming
language uses this task copying feature in
an efficient implementation of the [particle
filtering](https://en.wikipedia.org/wiki/Particle_filter) sampling
algorithm for arbitary order [Markov
processes](https://en.wikipedia.org/wiki/Markov_model#Hidden_Markov_model).

## Disclaimer

- This feature is still experimental and should only be used with caution.
- From v0.6.0, Libtask is implemented by recording all the computing
to a tape and copying that tape. Before that version, it is based on
a tricky hack on the Julia internals. You can check the commit
Expand Down