Skip to content
Merged
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
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Version info for the copy of Eigen we will download and build locally.
EIGEN_PREFIX = "3bb6a48d8c171cf20b5f8e48bfb4e424fbd4f79e"
# If this is changed, updated the value in ./WORKSPACE too.
EIGEN_COMMIT = "b66188b5dfd147265bfa9ec47595ca0db72d21f5"
EIGEN_URL = "https://gitlab.com/libeigen/eigen/-/archive/"

# Default build targets. Additional may be added conditionally below.
Expand Down Expand Up @@ -197,9 +197,9 @@ check-cuquantum-root-set:

eigen:
-rm -rf eigen
wget $(EIGEN_URL)/$(EIGEN_PREFIX)/eigen-$(EIGEN_PREFIX).tar.gz
tar -xzf eigen-$(EIGEN_PREFIX).tar.gz && mv eigen-$(EIGEN_PREFIX) eigen
rm eigen-$(EIGEN_PREFIX).tar.gz
wget $(EIGEN_URL)/$(EIGEN_COMMIT)/eigen-$(EIGEN_COMMIT).tar.gz
tar -xzf eigen-$(EIGEN_COMMIT).tar.gz && mv eigen-$(EIGEN_COMMIT) eigen
rm eigen-$(EIGEN_COMMIT).tar.gz

.PHONY: clean
clean:
Expand Down
5 changes: 3 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ load("@org_tensorflow//tensorflow:workspace0.bzl", "tf_workspace0")

tf_workspace0()

EIGEN_COMMIT = "d71c30c47858effcbd39967097a2d99ee48db464" # 3.4.1
# https://gitlab.com/libeigen/eigen/-/releases/3.4.1
EIGEN_COMMIT = "b66188b5dfd147265bfa9ec47595ca0db72d21f5"

EIGEN_SHA256 = "f1d28c2205d015490a685b1e5a171c434da87f757746724de3cb85e69621dec2"
EIGEN_SHA256 = "2c167ff09e88a5261111bc2aa7f18ae2e78d73fd42339387532937b0c2629829"

http_archive(
name = "eigen",
Expand Down
Loading