Skip to content

Commit 9fbb981

Browse files
authored
Merge branch 'JuliaParallel:master' into matmul
2 parents 3cc38a1 + 66ba6a9 commit 9fbb981

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1143
-499
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run : |
1717
version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2)
1818
echo "::set-output name=version::$version"
19-
- uses: julia-actions/setup-julia@v1
19+
- uses: julia-actions/setup-julia@v2
2020
with:
2121
version: ${{ steps.julia_compat.outputs.version }}
2222
- name: Install CompatHelper

.github/workflows/CustomCommands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fi
1919
2020
- uses: actions/checkout@v4
21-
- uses: julia-actions/setup-julia@v1
21+
- uses: julia-actions/setup-julia@v2
2222
with:
2323
version: '1.9'
2424
arch: 'x64'

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: julia-actions/setup-julia@latest
2020
with:
2121
version: '1'
22-
- uses: julia-actions/cache@v1
22+
- uses: julia-actions/cache@v2
2323
- name: Install dependencies
2424
run: julia --project=docs/ -e 'using Pkg; Pkg.develop([PackageSpec(path=pwd()), PackageSpec(path=pwd() * "/lib/TimespanLogging"), PackageSpec(path=pwd() * "/lib/DaggerWebDash")]); Pkg.instantiate()'
2525
- name: Build and deploy

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Dagger"
22
uuid = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
3-
version = "0.18.8"
3+
version = "0.18.9"
44

55
[deps]
66
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ List of recommended Dagger.jl resources:
9494
## Help and Discussion
9595
For help and discussion, we suggest asking in the following places:
9696

97-
[Julia Discourse](https://discourse.julialang.org/c/domain/parallel/34) and on the [Julia Slack](https://julialang.org/slack/) in the `#distributed` channel.
97+
[Julia Discourse](https://discourse.julialang.org/c/domain/parallel/34) and on the [Julia Slack](https://julialang.org/slack/) in the `#dagger` channel.
9898

9999
## Acknowledgements
100100

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[deps]
22
Dagger = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
33
DaggerWebDash = "cfc5aa84-1a2a-41ab-b391-ede92ecae40c"
4+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
45
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
6+
GraphViz = "f526b714-d49f-11e8-06ff-31ed36ee7ee0"
7+
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
58
TimespanLogging = "a526e669-04d3-4846-9525-c66122c55f63"
69

710
[compat]

docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
using Dagger, TimespanLogging, DaggerWebDash
1+
using Dagger, TimespanLogging, DaggerWebDash, GraphViz, Plots, DataFrames
2+
const GraphVizExt = something(Base.get_extension(Dagger, :GraphVizExt))
3+
const PlotsExt = something(Base.get_extension(Dagger, :PlotsExt))
24
using Documenter
35
import Documenter.Remotes: GitHub
46

57
makedocs(;
6-
modules = [Dagger, TimespanLogging, DaggerWebDash],
8+
modules = [Dagger, TimespanLogging, DaggerWebDash, GraphVizExt, PlotsExt],
79
authors = "JuliaParallel and contributors",
810
repo = GitHub("JuliaParallel", "Dagger.jl"),
911
sitename = "Dagger.jl",

docs/src/api-dagger/functions.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ Pages = ["functions.md"]
1111
```@docs
1212
@spawn
1313
spawn
14-
delayed
15-
@par
1614
```
1715

1816
## Task Options Functions/Macros
@@ -38,16 +36,6 @@ scope
3836
constrain
3937
```
4038

41-
## Lazy Task Functions
42-
```@docs
43-
domain
44-
compute
45-
dependents
46-
noffspring
47-
order
48-
treereduce
49-
```
50-
5139
## Processor Functions
5240
```@docs
5341
execute!

docs/src/api-dagger/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pages = ["types.md"]
1010
## Task Types
1111
```@docs
1212
Thunk
13-
EagerThunk
13+
DTask
1414
```
1515

1616
## Task Options Types

docs/src/api-timespanlogging/functions.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Pages = ["functions.md"]
1212
timespan_start
1313
timespan_finish
1414
get_logs!
15-
make_timespan
1615
```
1716

1817
## Logging Metric Functions

0 commit comments

Comments
 (0)