File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
.ci/docker/ci_commit_pins
runtime/core/portable_type/c10/c10/macros Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- 01f1cc44cbbfdf6307aa01b803a4ee22f9ade946
1+ b40585022f80385c0bbf5c0d08c172c391ed2318
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def python_is_compatible():
7171#
7272# NOTE: If you're changing, make the corresponding change in .ci/docker/ci_commit_pins/pytorch.txt
7373# by picking the hash from the same date in https://hud.pytorch.org/hud/pytorch/pytorch/nightly/
74- NIGHTLY_VERSION = "dev20250422 "
74+ NIGHTLY_VERSION = "dev20250527 "
7575
7676
7777def install_requirements (use_pytorch_nightly ):
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ using namespace c10::xpu;
241241#ifdef __HIPCC__
242242// Unlike CUDA, HIP requires a HIP header to be included for __host__ to work.
243243// We do this #include here so that C10_HOST_DEVICE and friends will Just Work.
244- // See https://github.com/ROCm-Developer-Tools/HIP /issues/441
244+ // See https://github.com/ROCm/hip /issues/441
245245#include < hip/hip_runtime.h>
246246#endif
247247
@@ -286,7 +286,7 @@ constexpr uint32_t CUDA_THREADS_PER_BLOCK_FALLBACK = 256;
286286#define C10_MIN_BLOCKS_PER_SM (threads_per_block, blocks_per_sm ) \
287287 ((((threads_per_block) * (blocks_per_sm) <= CUDA_MAX_THREADS_PER_SM) \
288288 ? (blocks_per_sm) \
289- : ((CUDA_MAX_THREADS_PER_SM + (threads_per_block)- 1 ) / \
289+ : ((CUDA_MAX_THREADS_PER_SM + (threads_per_block) - 1 ) / \
290290 (threads_per_block))))
291291// C10_LAUNCH_BOUNDS is analogous to __launch_bounds__
292292#define C10_LAUNCH_BOUNDS_0 \
You can’t perform that action at this time.
0 commit comments