Skip to content
Open
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
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ LoadAllPackages = "b37bcd2d-1570-475d-a8c6-9b4fae6d0ba9"
MicroCollections = "128add7d-3638-4c79-886c-908ea0c25c34"
PerformanceTestTools = "dc46b164-d16f-48ec-a853-60448fc869fe"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestFunctionRunner = "792026f5-ac9a-4a19-adcb-47b0ce2deb5d"

[targets]
test = ["Distributed", "Documenter", "Future", "LiterateTest", "LoadAllPackages", "MicroCollections", "PerformanceTestTools", "Random", "Test", "TestFunctionRunner"]
test = ["Distributed", "Documenter", "Future", "LiterateTest", "LoadAllPackages", "MicroCollections", "PerformanceTestTools", "Random", "StaticArrays", "Test", "TestFunctionRunner"]
6 changes: 6 additions & 0 deletions docs/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,12 @@ git-tree-sha1 = "39c9f91521de844bad65049efd4f9223e7ed43f9"
uuid = "171d559e-b47b-412a-8079-5efa626c420e"
version = "0.1.14"

[[StaticArrays]]
deps = ["LinearAlgebra", "Random", "Statistics"]
git-tree-sha1 = "2884859916598f974858ff01df7dfc6c708dd895"
uuid = "90137ffa-7385-5640-81b9-e52037218182"
version = "1.3.3"

[[Statistics]]
deps = ["LinearAlgebra", "SparseArrays"]
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Expand Down
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ LiterateTest = "d77d25b0-90d3-4a16-b10a-412a9d48f625"
LoadAllPackages = "b37bcd2d-1570-475d-a8c6-9b4fae6d0ba9"
MicroCollections = "128add7d-3638-4c79-886c-908ea0c25c34"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
12 changes: 12 additions & 0 deletions docs/src/reference/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,24 @@ FLoops.@floop
FLoops.@reduce
```

## `@combine`

```@docs
FLoops.@combine
```

## `@init`

```@docs
FLoops.@init
```

## `@completebasecase`

```@docs
FLoops.@completebasecase
```

## [`SequentialEx`, `ThreadedEx` and `DistributedEx` executors](@id executor)

An *executor* controls how a given `@floop` is executed. FLoops.jl re-exports
Expand Down
Loading