Lines Matching refs:Vector
38 …"Here we show some basic examples to illustrate the `libceed.Vector` class. In libCEED, CeedVector…
40 …"We illustrate the simple creation of a `libceed.Vector`, how to specify its size, and how to read…
54 "x = ceed.Vector(n)"
70 "x = ceed.Vector(size=10)"
77 …ssociate the data stored in a `libceed.Vector` with a `numpy.array` and use it to set and read the…
89 "x = ceed.Vector(size=3)\n",
102 …he following example, we set all entries to the same value and then visualize the `libceed.Vector`"
112 "x = ceed.Vector(size=5)\n",
135 "x = ceed.Vector(n)\n",
136 "y = ceed.Vector(n)\n",
152 "* In the following example, we access and modify only one entry of the `libceed.Vector`"
163 "x = ceed.Vector(n)\n",
176 …ompute the $L_1$, $L_2$ (default), and $L_{\\infty}$ norms of a `libceed.Vector` (keeping in mind …
186 "x = ceed.Vector(n)\n",
208 …, you can use device memory in your `libceed.Vector`s. In the following example, we create a `libc…
220 "x = ceed_gpu.Vector(n)\n",