Toshiki Teramura

Results 78 comments of Toshiki Teramura

``` cargo build --timings ``` has been stabilized in 1.60.0 https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html#cargo---timings

https://github.com/ricosjp/ruststep/pull/66#issuecomment-868471563 > 6.1 The syntax of the specification refers to keywords being in uppercase, but that is only for the syntax of the specification in WSN, not for EXPRESS as...

Currently (0.1.0 release), esprc can only understand a limited grammar of EXPRESS, and tested only for AP201 schema. We are still working to support entire EXPRESS language until 1.0 release....

> This is better in terms of memory, but the compile of generated Rust code becomes slower and slower. In AP201, there exists a case where the number of subtypes...

This issue becomes out-dated since I learn a lot from ISO document after I created this issue.

The above page http://www.steptools.com/stds/ is alive, and it still has a link to http://www.steptools.com/stds/archive/ . This means this link is not intentionally disabled. I think their HTTP server would have...

The link check of this link is disabled temporary. This issue will keep opening until this link recovers, or is removed.

Drop from 0.1.0 milestone

Tests for LOBPCG still randomly fails due to it uses `random` in itself. It should accept to use specific RNG.

I try creating a proc-macro based implementation of einsum https://github.com/termoshtt/einsum-derive It works like ```rust use ndarray::array; use einsum_derive::einsum; let a = array![ [1.0, 2.0], [3.0, 4.0] ]; let b =...