-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [JAX] Fixing CI failure due to incorrect use of `static_argnums` in jax.jit (#785) * fixed static argnums for jax.jit in single gpu encoder test, changed warning filtering for pytest Signed-off-by: Alp Dener <[email protected]> * propagating the fix to the JAX mnist example Signed-off-by: Alp Dener <[email protected]> * fixed missing space ibetween flags i QAA scripts Signed-off-by: Alp Dener <[email protected]> * added TE warnings into the ignore list Signed-off-by: Alp Dener <[email protected]> --------- Signed-off-by: Alp Dener <[email protected]> Signed-off-by: Tim Moon <[email protected]> * [JAX] Allow multi-dims for dgamma and dbeta in LN descriptor. (#780) * Allow multi-dims for dgamma and dbeta in LN descriptor. Signed-off-by: Ming Huang <[email protected]> * Fix the jit error in examples/jax Signed-off-by: Ming Huang <[email protected]> --------- Signed-off-by: Ming Huang <[email protected]> Signed-off-by: Tim Moon <[email protected]> --------- Signed-off-by: Alp Dener <[email protected]> Signed-off-by: Tim Moon <[email protected]> Signed-off-by: Ming Huang <[email protected]> Co-authored-by: Alp Dener <[email protected]> Co-authored-by: Ming-Xu Huang <[email protected]>
- Loading branch information
Showing
8 changed files
with
91 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# | ||
# See LICENSE for license information. | ||
|
||
[pytest] | ||
filterwarnings= | ||
ignore:sharding_type of.*:DeprecationWarning | ||
ignore:major_sharding_type of.*:DeprecationWarning | ||
ignore:Fused attention is not enabled.*:UserWarning | ||
ignore:The hookimpl.*:DeprecationWarning | ||
ignore:xmap is an experimental feature and probably has bugs! | ||
ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning | ||
ignore:can't resolve package from __spec__ or __package__:ImportWarning | ||
ignore:Using or importing the ABCs.*:DeprecationWarning | ||
ignore:numpy.ufunc size changed | ||
ignore:.*experimental feature | ||
ignore:The distutils.* is deprecated.*:DeprecationWarning | ||
ignore:backend and device argument on jit is deprecated.*:DeprecationWarning | ||
ignore:ml_dtypes.float8_e4m3b11 is deprecated. | ||
ignore:np.find_common_type is deprecated.*:DeprecationWarning | ||
ignore:jax.numpy.in1d is deprecated.*:DeprecationWarning | ||
ignore:The numpy.array_api submodule is still experimental.*:UserWarning | ||
ignore:case not machine-readable.*:UserWarning | ||
ignore:not machine-readable.*:UserWarning | ||
ignore:Special cases found for .* but none were parsed.*:UserWarning | ||
ignore:jax.extend.mlir.dialects.mhlo is deprecated.*:DeprecationWarning | ||
ignore:jax.experimental.maps and .* are deprecated.*:DeprecationWarning | ||
ignore:The host_callback APIs are deprecated .*:DeprecationWarning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters