ifsheldon
ifsheldon
When I tried to use another crate `crevice`, I found the example given in its docs seems not working. The example using `cgmath` is [here](https://github.com/LPGhatguy/crevice) in its README. Then I...
When I read your code, I found something that is not clear enough and may lead to some confusions, so I did a little bit refactoring including: * removed unused...
As Apple begins to ship new Macbooks with Apple Silicon and Tensforflow was claimed to support Apple Silicon, I wonder whether Swift for Tensorflow will work on Apple Silicon-based Macs....
As in Scientific Visualization, 1D and 3D textures are often used, we need 1D and 3D linear interpolations. Thanks!
Now `stannum` (and generally Taichi) cannot do automatic batch as done in PyTorch. For example, the below can only handle 3 arrays, but if we have a batch of arrays,...
With the current Taichi (v0.9.1 - 1.2.1), calling `Tube` N times will result in N^2 time complexity because when creating a field Taichi need to inject kernel information into a...
This issue tracks the breaking change events from the upstream dependencies that break this library
Now although `Tin` is subclass of `torch.nn.Module`, we cannot actually save parameters and "model structures" in `Tin` because parameters are values in Taichi fields and "model structures" are actually Taichi...
Now `Tin` and `Tube` are subclasses of `torch.nn.Module` and they can have learnable parameters in the form of values in Taichi fields. However, now these values cannot be optimized by...
As mentioned in README, we have now these limitations: * The registered field with `complex_dtype=True` must be an appropriate `VectorField` or `ScalarField` * If it's `VectorField`, `n` should be `2`,...