-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor for internal serving build (#961)
* refactor for internal serving build * fix non-internal_serving build * fix internal ci failure * revert blade gemm deps for bridge * fix transpose bridge build * fix
- Loading branch information
1 parent
a21c0f7
commit 2e56fa8
Showing
17 changed files
with
169 additions
and
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.21.05 | ||
0.23.01 |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# relative path under tao_compiler, relative path under tf_community | ||
decoupling,tensorflow/compiler/decoupling | ||
mlir/disc,tensorflow/compiler/mlir/disc | ||
mlir/util,tensorflow/compiler/mlir/util | ||
mlir/xla/ral,tensorflow/compiler/mlir/xla/ral | ||
.bazelrc.user,tensorflow/../.bazelrc.user |
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,44 @@ | ||
config_setting( | ||
name = "is_platform_alibaba", | ||
define_values = {"is_platform_alibaba": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "is_patine", | ||
define_values = {"is_patine": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "is_blade_gemm", | ||
define_values = {"is_blade_gemm": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "is_mkldnn", | ||
define_values = {"is_mkldnn": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "disc_aarch64", | ||
define_values = {"disc_aarch64": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "disc_x86", | ||
define_values = {"disc_x86": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "is_torch_disc", | ||
define_values = {"is_torch_disc": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "skip_compute_intensive_fusion", | ||
define_values = {"skip_compute_intensive_fusion": "true"}, | ||
) | ||
|
||
config_setting( | ||
name = "is_internal_serving", | ||
define_values = {"is_internal_serving": "true"}, | ||
) |
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
Oops, something went wrong.