jax.experimental.sparse.bcoo_update_layout#

jax.experimental.sparse.bcoo_update_layout(mat, *, n_batch=None, n_dense=None, on_inefficient='error')[源代码]#

更新 BCOO 矩阵的存储布局(即 n_batch 和 n_dense)。

在许多情况下,这可以在不引入不必要的存储开销的情况下完成。但是,增加 mat.n_batchmat.n_dense 将导致非常低效的存储,其中包含许多显式存储的零,除非新的批处理或密集维度的大小为 0 或 1。在这种情况下,bcoo_update_layout 将引发 SparseEfficiencyError。可以通过指定 on_inefficient 参数来关闭此错误。

参数:
  • mat (BCOO) – BCOO 数组

  • n_batch (int | None | None) – 可选(int),输出矩阵中的批处理维度数。如果为 None,则 n_batch = mat.n_batch。

  • n_dense (int | None | None) – 可选(int),输出矩阵中的密集维度数。如果为 None,则 n_dense = mat.n_dense。

  • on_inefficient (str | None) – 可选(string),值为 ['error', 'warn', None] 之一。指定在低效重新配置情况下的行为。这被定义为一种重新配置,其中生成的表示的大小比输入表示的大小大得多。

返回值:

BCOO 数组

一个 BCOO 数组,表示与输入相同的稀疏数组,具有指定的布局。 mat_out.todense() 将与 mat.todense() 匹配到适当的精度。

返回类型:

mat_out