This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: holos | |
# Contributor: Michael Witten <mfwitten> | |
# Contributor: Vladimir Gorbunov <zaza> | |
# Contributor: Earnest | |
# Contributor: Attila Toth <menta> | |
# Contributor: Flu | |
# Contributor: menta <attila dot toth at ch dot bme dot hu> | |
# Contributor: hero <erdetb at web dot de> | |
# Maintainer: aksr <aksr at t-com dot me> | |
pkgname=llpp-git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
def _process(queue): | |
input_ = queue.get() | |
queue.put((input_,)) | |
def test_syncbn(): | |
torch.multiprocessing.set_start_method('spawn') |