change import relative paths due to internal build failures (#143968)

Internal builds failing due to #143355, changing imports to be relative, similar to other imports

Pull Request resolved: https://github.com/pytorch/pytorch/pull/143968
Approved by: https://github.com/albanD
This commit is contained in:
Wouter Devriendt
2024-12-30 17:19:47 +00:00
committed by PyTorch MergeBot
parent c27c788e35
commit 9d026000de
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
#include <ATen/native/TensorFactories.h>
#include <ATen/quantized/QTensorImpl.h>
#include <ATen/quantized/Quantizer.h>
#include <aten/src/ATen/native/quantized/library.h>
#include <ATen/native/quantized/library.h>
#include <c10/core/QScheme.h>
#include <c10/core/TensorOptions.h>
#include <c10/util/accumulate.h>

View File

@ -1,5 +1,5 @@
#include <torch/library.h>
#include <aten/src/ATen/native/quantized/library.h>
#include <ATen/native/quantized/library.h>
TORCH_LIBRARY(quantized, m) {
m.set_python_module("caffe2.torch.fb.model_transform.splitting.split_dispatcher");