Skip to content

Commit

Permalink
fix outdated path and text in performance benchmark
Browse files Browse the repository at this point in the history
→ point release v0.10.1

@JuliaRegistrator register
  • Loading branch information
pierre-haessig committed Sep 27, 2023
1 parent 64deed8 commit 11ce7c1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "Microgrids"
uuid = "bd581358-d3fa-499e-a26e-e70307242c03"
authors = ["Pierre Haessig <[email protected]>",
"evelisea <[email protected]>"]
version = "0.10.0"
version = "0.10.1"

This comment has been minimized.

Copy link
@pierre-haessig

pierre-haessig Oct 6, 2023

Author Collaborator

@JuliaRegistrator register 2nd try


[compat]
julia = "1.6"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ The work on the Julia package specifically focuses on:
(with respect to sizing parameters) can be computed using
[ForwardDiff](http://www.juliadiff.org/ForwardDiff.jl/).

- Thanks to our careful treatment of types (and the thanks to ForwardDiff and Julia),
computing the gradient with respect to n=3 parameters is performed in less than
2×simulation time (whereas finite difference would take n+1=4 × simulation time)
- Thanks to our careful treatment of types (and thanks to ForwardDiff and Julia),
computing the gradient with respect to n=3 parameters with ForwardDiff should run
faster than with finite differences (which take n+1 = 4× simulation time)

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion perf/MicrogridsBenchmark.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using BenchmarkTools
using CSV, DataFrames
using ForwardDiff

const data = DataFrame(CSV.File("$(@__DIR__)/../examples/microgrid_with_PV_BT_DG/data/Ouessant_data_2016.csv"))
const data = DataFrame(CSV.File("$(@__DIR__)/../examples/data/Ouessant_data_2016.csv"))
# Simulation steps
const nsteps = length(data.Load)

Expand Down
2 changes: 0 additions & 2 deletions perf/MicrogridsBenchmark_output.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Run of MicrogridsBenchmark.jl on Dell notebook (i7-1165G7)

**Benchmark results outdated** -> to be run again on Dell i7

## System configuration

Julia version 1.9.2
Expand Down

1 comment on commit 11ce7c1

@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 updated: JuliaRegistries/General/92320

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

git tag -a v0.10.1 -m "<description of version>" 11ce7c19f852091a3f1934ea8542ba2df52b3ebc
git push origin v0.10.1

Please sign in to comment.