From 37bcdb98f679da65ac1d03ab86dc51f2ba57fb67 Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Thu, 20 Apr 2023 20:17:38 +0000 Subject: [PATCH] Fix buck parsing in OSS build (#99648) By removing `@fbsource` cell prefix from `pt_ops.bzl` Fixes https://github.com/pytorch/pytorch/issues/99642 Pull Request resolved: https://github.com/pytorch/pytorch/pull/99648 Approved by: https://github.com/kit1980, https://github.com/huydhn --- pt_ops.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pt_ops.bzl b/pt_ops.bzl index 26a859b1e27..5deca64ebac 100644 --- a/pt_ops.bzl +++ b/pt_ops.bzl @@ -1,4 +1,4 @@ -load("@fbsource//tools/build_defs:fb_native_wrapper.bzl", "fb_native") +load("//tools/build_defs:fb_native_wrapper.bzl", "fb_native") load("//tools/build_defs:expect.bzl", "expect") load("//tools/build_defs:fb_xplat_genrule.bzl", "fb_xplat_genrule") load("//tools/build_defs:type_defs.bzl", "is_list", "is_string")