Skip to content

Commit 2f7ff78

Browse files
committed
fix param name
1 parent 9a79988 commit 2f7ff78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deepxde/backend/jax/tensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def reduce_max(input_tensor):
166166

167167

168168
def norm(tensor, ord=None, axis=None, keepdims=False):
169-
return jnp.linalg.norm(tensor, ord=ord, dim=axis, keepdim=keepdims)
169+
return jnp.linalg.norm(tensor, ord=ord, axis=axis, keepdims=keepdims)
170170

171171

172172
def zeros(shape, dtype):

0 commit comments

Comments
 (0)