-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
223 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
_build | ||
_opam |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,4 @@ | ||
version=0.24.1 | ||
profile = default | ||
version = 0.25.1 | ||
|
||
module-item-spacing=compact | ||
|
||
space-around-arrays=false | ||
space-around-lists=false | ||
space-around-records=false | ||
space-around-variants=false | ||
|
||
cases-exp-indent=2 | ||
|
||
exp-grouping=preserve | ||
exp-grouping = preserve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Release notes | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## 1.0.0 | ||
|
||
- Initial release (@polytypic) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
# Low-level multicore utilities for OCaml | ||
[API reference](https://ocaml-multicore.github.io/multicore-magic/doc/multicore-magic/Multicore_magic/index.html) | ||
|
||
# **multicore-magic** — Low-level multicore utilities for OCaml | ||
|
||
This is a library of magic multicore utilities intended for experts for | ||
extracting the best possible performance from multicore OCaml. | ||
|
||
Hopefully future releases of multicore OCaml will make this library obsolete! | ||
|
||
See | ||
[the reference manual](https://ocaml-multicore.github.io/multicore-magic/multicore-magic/Multicore_magic/index.html) | ||
or the [Multicore_magic.mli](src/main/Multicore_magic.mli) signature for the | ||
API. | ||
## Development | ||
|
||
### Formatting | ||
|
||
This project uses [ocamlformat](https://github.com/ocaml-ppx/ocamlformat) (for | ||
OCaml) and [prettier](https://prettier.io/) (for Markdown). | ||
|
||
### To make a new release | ||
|
||
1. Update [CHANGES.md](CHANGES.md). | ||
2. Run `dune-release tag VERSION` to create a tag for the new `VERSION`. | ||
3. Run `dune-release` to publish the new `VERSION`. | ||
4. Run `./update-gh-pages-for-tag VERSION` to update the online documentation. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(dirs src) | ||
(dirs src test) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
(lang dune 3.3) | ||
(name multicore-magic) | ||
(generate_opam_files true) | ||
(source (github ocaml-multicore/multicore-magic)) | ||
(authors "Vesa Karvonen <[email protected]>") | ||
(maintainers "Vesa Karvonen <[email protected]>") | ||
(homepage "https://github.com/ocaml-multicore/multicore-magic") | ||
(license ISC) | ||
(package (name multicore-magic) | ||
(synopsis "Low-level multicore utilities for OCaml") | ||
(depends | ||
(ocaml (>= 4.12.0)) | ||
(alcotest (and (>= 1.7.0) :with-test)) | ||
(odoc (and (>= 2.2.0) :with-doc)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,29 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "1.0.0" | ||
synopsis: "Low-level multicore utilities for OCaml" | ||
maintainer: "Vesa Karvonen <[email protected]>" | ||
authors: "Vesa Karvonen" | ||
maintainer: ["Vesa Karvonen <[email protected]>"] | ||
authors: ["Vesa Karvonen <[email protected]>"] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml-multicore/multicore-magic" | ||
bug-reports: "https://github.com/ocaml-multicore/multicore-magic/issues" | ||
dev-repo: "git+https://github.com/ocaml-multicore/multicore-magic.git" | ||
depends: [ | ||
"dune" {>= "3.3.0"} | ||
"ocaml" {>= "5.0.0"} | ||
"ocamlformat" {= "0.24.1" & with-test} | ||
"odoc" {>= "2.1.1" & with-doc} | ||
"dune" {>= "3.3"} | ||
"ocaml" {>= "4.12.0"} | ||
"alcotest" {>= "1.7.0" & with-test} | ||
"odoc" {>= "2.2.0" & with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
dev-repo: "git+https://github.com/ocaml-multicore/multicore-magic.git" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.