-
```julia
Stacktrace:
[1] custom_rule_method_error
@ ~/.julia/packages/Enzyme/Vjlrr/src/rules/customrules.jl:452 [inlined]
[2] mul!
@ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/jul…
-
Dear Yihao-Shi:
Thanks for your great work! I attempted to modify example DPmaterial.py by removing background_damping and alphaPIC, and used MC constitutive modeling for the calculations. I found t…
-
Example:
```python
import taichi as ti
ti.init()
x = ti.Vector([0, 1, 2])
@ti.kernel
def test(x: ti.template()):
print(x)
test(x) # [0, 1, 2]
x[0] = 3
test(x) # [0, 1, 2]
```
-
Hello,
I am trying to do GEV estimation using `mapCube`, using the following logic. The objective is to get the timeseries for each gridpoints and return the GEV model associated with the timeserie…
-
I have a field declared like this:
let scalarField = ti.field(
ti.types.vector(ti.types.vector(ti.f32, 2), 3),
2
);
basically this should hold data like this:
[
[[0,3…
-
I have tried the new exported `open_mfdataset` function with a new dimension and I get the following error:
```julia
using YAXArrays
using NetCDF
import DimensionalData as DD
files = ["2020…
-
**Describe the bug**
Different add behavier in ti.func and ti.kernel
**To Reproduce**
```py
import taichi as ti
ti.init(ti.cuda)
v6 = ti.types.vector(6, ti.f32)
@ti.func
def vector_add(a, …
-
### 🐛 Describe the bug
When processing complex data type, torch.linalg.vector_norm raises an overflow error.
```python
import torch
>>> torch.linalg.vector_norm(torch.randn(3, 3), torch.tensor(2…
-
### Describe the bug
I try to execute SYCL code on my NVIDIA GPU and for that I followed all the instructions on https://www.intel.com/content/www/us/en/developer/articles/technical/compiling-sycl-…
-
I find that the below code is not working. the taichi version is 1.1.2. The code is placed at field.md
```python
f = ti.Vector(ti.f32, n=2).field(shape=(1,2,3))
```
Is this the old syntax?