Skip to content

Commit

Permalink
mirai 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Jul 1, 2024
1 parent f3ff0ec commit 2b2c912
Show file tree
Hide file tree
Showing 14 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: mirai
Type: Package
Title: Minimalist Async Evaluation Framework for R
Version: 1.1.0.9010
Version: 1.1.1
Description: High-performance parallel code execution and distributed computing.
Designed for simplicity, a 'mirai' evaluates an R expression asynchronously,
on local or network resources, resolving automatically upon completion.
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mirai 1.1.0.9010 (development)
# mirai 1.1.1

* `serialization()` function signature and return value slightly modified for clarify. Successful registration / cancellation mesasges are no longer printed to the console.
* `serialization()` function signature and return value slightly modified for clarity. Successful registration / cancellation mesasges are no longer printed to the console.
* `dispatcher()` argument 'retry' now defaults to FALSE for consistency with non-dispatcher behaviour.
* `remote_config()` gains argument 'quote' to control whether or not to quote the daemon launch commmand, and now works with Slurm (thanks @michaelmayer2 #119).
* Ephemeral daemons now exit as soon as permissible, eiliminating the 2s linger period.
Expand Down
5 changes: 2 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,10 @@ High-performance parallel code execution and distributed computing.
Designed for simplicity, a 'mirai' evaluates an R expression asynchronously, on local or network resources, resolving automatically upon completion.
<br /><br />
Modern networking and concurrency built on [nanonext](https://doi.org/10.5281/zenodo.7903429) and [NNG (Nanomsg Next Gen)](https://nng.nanomsg.org/) ensures reliable and efficient scheduling, over fast inter-process communications or TCP/IP secured by TLS.
<br /><br />

> *mirai パッケージを試してみたところ、かなり速くて驚きました*
### Scale Up in Production

### Production-Grade Compute
> *mirai パッケージを試してみたところ、かなり速くて驚きました*
[<img alt="Joe Cheng on mirai with Shiny" src="https://img.youtube.com/vi/GhX0PcEm3CY/hqdefault.jpg" width = "300" height="225" />](https://youtu.be/GhX0PcEm3CY?t=1740) &nbsp;
[<img alt="Will Landau on mirai in clinical trials" src="https://img.youtube.com/vi/cyF2dzloVLo/hqdefault.jpg" width = "300" height="225" />](https://youtu.be/cyF2dzloVLo?t=5127)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ automatically upon completion. <br /><br /> Modern networking and
concurrency built on [nanonext](https://doi.org/10.5281/zenodo.7903429)
and [NNG (Nanomsg Next Gen)](https://nng.nanomsg.org/) ensures reliable
and efficient scheduling, over fast inter-process communications or
TCP/IP secured by TLS. <br /><br />
TCP/IP secured by TLS.

> *mirai パッケージを試してみたところ、かなり速くて驚きました*
### Scale Up in Production

### Production-Grade Compute
> *mirai パッケージを試してみたところ、かなり速くて驚きました*
[<img alt="Joe Cheng on mirai with Shiny" src="https://img.youtube.com/vi/GhX0PcEm3CY/hqdefault.jpg" width = "300" height="225" />](https://youtu.be/GhX0PcEm3CY?t=1740)

Expand Down Expand Up @@ -83,7 +83,7 @@ method:

``` r
m[]
#> [1] 47.76782
#> [1] 48.09123
```

It is not necessary to wait, as the mirai resolves automatically
Expand All @@ -94,7 +94,7 @@ available at `$data`.
m
#> < mirai [$data] >
m$data
#> [1] 47.76782
#> [1] 48.09123
```

### Daemons
Expand Down
Binary file modified man/figures/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified pkgdown/favicon/favicon.ico
Binary file not shown.

0 comments on commit 2b2c912

Please sign in to comment.