Compare commits

...

36 Commits

Author SHA1 Message Date
0f132dedaf Update
[ghstack-poisoned]
2025-11-10 19:12:58 +00:00
711d82c24b Update
[ghstack-poisoned]
2025-11-10 19:10:44 +00:00
1e65944d4a Update
[ghstack-poisoned]
2025-11-10 19:09:58 +00:00
becb6c1b3e Update (base update)
[ghstack-poisoned]
2025-11-10 19:09:58 +00:00
6dfd1fa9de Update
[ghstack-poisoned]
2025-09-01 11:21:48 +00:00
a7f6097f96 Update
[ghstack-poisoned]
2025-08-30 15:17:48 +00:00
7d7665d36b Update
[ghstack-poisoned]
2025-08-29 23:20:02 +00:00
b89ac0894a Update
[ghstack-poisoned]
2025-08-29 17:12:33 +00:00
4b6f0350c4 Update (base update)
[ghstack-poisoned]
2025-08-29 17:09:15 +00:00
9bb017004e Update
[ghstack-poisoned]
2025-08-29 17:09:15 +00:00
a1d6aac403 Update
[ghstack-poisoned]
2025-08-29 13:14:52 +00:00
8cb8c4e136 Update
[ghstack-poisoned]
2025-08-29 09:52:43 +00:00
99338273ab Update
[ghstack-poisoned]
2025-08-28 21:50:14 +00:00
8c2e3379fa Update
[ghstack-poisoned]
2025-08-28 15:37:52 +00:00
33ae15eca5 Update
[ghstack-poisoned]
2025-08-28 09:51:32 +00:00
14f1878fcd Update (base update)
[ghstack-poisoned]
2025-08-27 22:43:52 +00:00
51fad966f5 Update
[ghstack-poisoned]
2025-08-27 22:43:52 +00:00
37f813f730 Update
[ghstack-poisoned]
2025-08-05 13:08:22 +00:00
6444c3b5d9 Update (base update)
[ghstack-poisoned]
2025-08-05 09:16:39 +00:00
7f22d5930f Update
[ghstack-poisoned]
2025-08-05 09:16:39 +00:00
acbd00a185 Update (base update)
[ghstack-poisoned]
2025-08-05 00:32:55 +00:00
509b5ddbee Update
[ghstack-poisoned]
2025-08-05 00:32:55 +00:00
f1bab589d7 Update (base update)
[ghstack-poisoned]
2025-08-04 18:39:42 +00:00
e7cb53ce2e Update
[ghstack-poisoned]
2025-08-04 18:39:42 +00:00
ef87ca45ae Update (base update)
[ghstack-poisoned]
2025-08-04 14:49:54 +00:00
09224da6ff Update
[ghstack-poisoned]
2025-08-04 14:49:54 +00:00
147baaa248 Update (base update)
[ghstack-poisoned]
2025-08-04 09:17:27 +00:00
73d87dea88 Update
[ghstack-poisoned]
2025-08-04 09:17:27 +00:00
085f35342a Update (base update)
[ghstack-poisoned]
2025-08-04 09:02:35 +00:00
4b8c874a35 Update
[ghstack-poisoned]
2025-08-04 09:02:35 +00:00
41eed5dbbf Update (base update)
[ghstack-poisoned]
2025-08-03 14:20:45 +00:00
35d2b42ead Update
[ghstack-poisoned]
2025-08-03 14:20:45 +00:00
1fbe221c27 Update (base update)
[ghstack-poisoned]
2025-08-03 10:06:30 +00:00
a63189a783 Update
[ghstack-poisoned]
2025-08-03 10:06:30 +00:00
ca516ab038 Update (base update)
[ghstack-poisoned]
2025-08-02 23:00:30 +00:00
de62598c65 Update
[ghstack-poisoned]
2025-08-02 23:00:30 +00:00
4 changed files with 3 additions and 3 deletions

View File

@ -74,6 +74,7 @@ HeaderFilterRegex: '^(aten/|c10/|torch/).*$'
WarningsAsErrors: '*'
LineFilter:
- name: '/usr/include/.*'
- name: 'sycl/sycl.hpp'
CheckOptions:
cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor: true
cppcoreguidelines-special-member-functions.AllowImplicitlyDeletedCopyOrMove: true

View File

@ -215,8 +215,6 @@ exclude_patterns = [
'aten/src/ATen/cpu/vml.h',
'aten/src/ATen/CPUFixedAllocator.h',
'aten/src/ATen/Parallel*.h',
'c10/xpu/**/*.h',
'c10/xpu/**/*.cpp',
'c10/benchmark/intrusive_ptr_benchmark.cpp',
'c10/cuda/CUDAAlgorithm.h',
'c10/util/complex_math.h',

View File

@ -167,7 +167,7 @@ if __name__ == "__main__":
IS_WINDOWS, "Only for lazy initialization on Linux, not applicable on Windows."
)
def test_lazy_init(self):
"""Validate that no XPU calls are made during `import torch` call"""
"""Validate that no XPU calls are made during `import torch` call."""
def check_output(script: str) -> str:
return (

View File

@ -295,6 +295,7 @@ static void registerXpuDeviceProperties(PyObject* module) {
return static_cast<int64_t>(prop.architecture);
};
#endif
// Wrapper class for XPU UUID
struct XPUuuid {
XPUuuid(const std::array<unsigned char, 16>& uuid) : bytes(uuid) {}