From 5b6bbcccf7e960a11a7ab45bcec48ebae966243f Mon Sep 17 00:00:00 2001 From: Artavazd Balaian Date: Fri, 5 Aug 2022 10:27:02 +0800 Subject: [PATCH] Fix loading of rules_cuda_dependencies Otherwise getting `ERROR: error loading package '': Label '//cuda:dependencies.bzl' is invalid because 'cuda' is not a package; perhaps you meant to put the colon here: '//:cuda/dependencies.bzl'?` --- third_party/rules_cuda/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/rules_cuda/README.md b/third_party/rules_cuda/README.md index d967953bd85..a451aebcaa7 100644 --- a/third_party/rules_cuda/README.md +++ b/third_party/rules_cuda/README.md @@ -27,7 +27,7 @@ http_archive( strip_prefix = "runtime-b1c7cce21ba4661c17ac72421c6a0e2015e7bef3/third_party/rules_cuda", urls = ["https://github.com/tensorflow/runtime/archive/b1c7cce21ba4661c17ac72421c6a0e2015e7bef3.tar.gz"], ) -load("//cuda:dependencies.bzl", "rules_cuda_dependencies") +load("@rules_cuda//cuda:dependencies.bzl", "rules_cuda_dependencies") rules_cuda_dependencies() load("@rules_cc//cc:repositories.bzl", "rules_cc_toolchains") rules_cc_toolchains()