Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Jaxite

Jaxite is a fully homomorphic encryption backend targeting TPUs and GPUs,
written in [JAX](https://github.com/google/jax).
written in [JAX](https://github.com/jax-ml/jax).

It implements the [CGGI cryptosystem](https://eprint.iacr.org/2018/421) with
some optimizations, and is a supported backend for [Google's FHE
Expand Down
2 changes: 1 addition & 1 deletion jaxite/jaxite_lib/matrix_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def hpmatmul_conv_adapt_conv(x: jnp.ndarray, y: jnp.ndarray) -> jnp.ndarray:

lhs: jax.Array = jax.lax.bitcast_convert_type(x, new_dtype=jnp.uint8) # bnmp
rhs: jax.Array = jax.lax.bitcast_convert_type(y, new_dtype=jnp.uint8) # nk1q
# https://github.com/google/jax/issues/11483
# https://github.com/jax-ml/jax/issues/11483
rhs = jax.lax.rev(rhs, [2])
# rhs = jlax.rev(rhs, dimensions=[3])

Expand Down