Skip to content

Commit

Permalink
v0.9.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
janpfeifer committed Apr 20, 2024
1 parent c863f94 commit def0bbc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![TestStatus](https://github.com/gomlx/gomlx/actions/workflows/go.yaml/badge.svg)](https://github.com/gomlx/gomlx/actions/workflows/go.yaml)
![Coverage](https://img.shields.io/badge/Coverage-76.6%25-yellow)

<img align="right" src="docs/gomlx_gopher.jpg" align="left" alt="GoMLX Gopher" width="220"/>
<img align="right" src="docs/gomlx_gopher.jpg" alt="GoMLX Gopher" width="220px"/>

GoMLX is a fast and easy-to-use set of Machine Learning and generic math libraries and tools.
It can be seen as a TensorFlow/Jax/PyTorch for Go.
Expand Down
9 changes: 4 additions & 5 deletions c/gomlx/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,15 @@ cc_library(
name = "gomlx",
srcs = glob(["*.cpp"]),
hdrs = glob(["*.h"]),
# SKIP_ABSL_INITIALIZE_LOG: this will trigger skipping of the of the call to `absl::InitializeLog()`
# to prevent double-calling, in case whoever is linking GoMLX also calls it. Setting it may
# lead to spurious logging by XLA library at startup up.
# defines = ["SKIP_ABSL_INITIALIZE_LOG"],
linkopts = ["-shared"],
deps = gomlx_jit_deps + [
"@gperftools",
],
alwayslink = True,

# SKIP_ABSL_INITIALIZE_LOG: this will trigger skipping of the of the call to `absl::InitializeLog()`
# to prevent double-calling, in case whoever is linking GoMLX also calls it. Setting it may
# lead to spurious logging by XLA library at startup up.
# defines = ["SKIP_ABSL_INITIALIZE_LOG"],
)

cc_binary(
Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GoMLX changelog

## Next
## 0.9.1 - 2024/04/19

* XLA integration:
* Added "SKIP_ABSL_INITIALIZE_LOG", for conflict cases, while https://github.com/abseil/abseil-cpp/issues/1656 is
Expand Down

0 comments on commit def0bbc

Please sign in to comment.