mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 13:44:15 +08:00
- Add additional timeouts to test_multiprocessing to reduce chances of hanging indefintely on failure - Add missing header guards - Fix typo - Check that torch_shm_manager exists in torch/__init__.py
10 lines
104 B
C
10 lines
104 B
C
#pragma once
|
|
|
|
#include <unistd.h>
|
|
|
|
struct AllocInfo {
|
|
pid_t pid;
|
|
char free;
|
|
char filename[60];
|
|
};
|