Files
Automaaval/dist/zacatraz/_internal/dask/widgets/templates/array.html.j2
T

41 lines
1.3 KiB
Django/Jinja
Raw Normal View History

2026-03-14 21:48:05 +00:00
<table>
<tr>
<td>
<table style="border-collapse: collapse;">
<thead>
<tr>
<td> </td>
<th> Array </th>
<th> Chunk </th>
</tr>
</thead>
<tbody>
{% if nbytes %}
<tr>
<th> Bytes </th>
<td> {{ nbytes }} </td>
<td> {{ cbytes }} </td>
</tr>
{% endif %}
<tr>
<th> Shape </th>
<td> {{ array.shape }} </td>
<td> {{ array.chunksize }} </td>
</tr>
<tr>
<th> Dask graph </th>
<td colspan="2"> {{ array.npartitions }} chunks in {{ layers }} </td>
</tr>
<tr>
<th> Data type </th>
<td colspan="2"> {{ array.dtype }} {{ array._meta | type | typename }} </td>
</tr>
</tbody>
</table>
</td>
<td>
{{grid}}
</td>
</tr>
</table>