Skip to content

Commit d5a9f17

Browse files
authored
Merge pull request #71 from ReactiveBayes/separate-julia-processes
Try executing examples in a separate Julia processes
2 parents 69c80c2 + 6ffc4e7 commit d5a9f17

7 files changed

Lines changed: 3023 additions & 5812 deletions

File tree

Makefile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ docs-setup:
2222
julia --project=docs -e 'using Pkg; Pkg.instantiate()'
2323

2424
examples-setup:
25-
@echo "Note: Building examples requires Weave.jl to be installed globally."
26-
@echo "If not installed, run: julia -e 'using Pkg; Pkg.add(\"Weave\")'"
2725
@echo "Note: If you experience persistent errors, try 'make clean' before rebuilding the examples."
2826
julia --project=examples -e 'using Pkg; Pkg.instantiate()'
2927

@@ -53,11 +51,9 @@ help:
5351
@echo " examples-setup - Install examples dependencies"
5452
@echo " docs-setup - Install documentation dependencies"
5553
@echo ""
56-
@echo "Requirements:"
57-
@echo " Weave.jl must be installed globally for examples to build."
58-
@echo " Install with: julia -e 'using Pkg; Pkg.add(\"Weave\")'"
5954
@echo " If you fix an example but still see errors,"
60-
@echo " run 'make clean' to clear the cache before rebuilding."
55+
@echo " try running 'make clean' to clear the cache before rebuilding."
56+
@echo " otherwise open an issue in the repository"
6157
@echo ""
6258
@echo "Examples:"
6359
@echo " make examples # Build all examples"
@@ -70,4 +66,4 @@ help:
7066
@echo " make examples-dev USE_CACHE=true # Build all examples with local RxInfer with caching"
7167
@echo " make examples-dev STRICT_ENV=true # Build with local RxInfer, fail if env vars missing"
7268
@echo " make clean && make all # Clean build everything"
73-
@echo " make all && make preview # Build and view docs"
69+
@echo " make all && make preview # Build and view docs"

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,12 @@ Navigate to the [Examples](https://examples.rxinfer.com) page to check the pre-r
1818
git clone https://github.com/ReactiveBayes/RxInferExamples.jl.git
1919
```
2020

21-
2. Install required global dependencies:
22-
```bash
23-
julia -e 'using Pkg; Pkg.add("Weave")'
24-
```
25-
26-
> **Note**
27-
> Building examples requires the Weave.jl package to be installed globally.
28-
29-
3. Build the examples:
21+
2. Build the examples:
3022
```bash
3123
make examples
3224
```
3325

34-
4. Build and preview the documentation:
26+
3. Build and preview the documentation:
3527
```bash
3628
make docs
3729
make preview

examples/Advanced Examples/Integrating Neural Networks with Flux.jl/Integrating Neural Networks with Flux.jl.ipynb

Lines changed: 2810 additions & 5652 deletions
Large diffs are not rendered by default.

examples/Problem Specific/Ising Model/Ising Model.ipynb

Lines changed: 56 additions & 48 deletions
Large diffs are not rendered by default.
-330 KB
Loading
-340 KB
Loading

0 commit comments

Comments
 (0)