10 lines
122 B
Python
10 lines
122 B
Python
# coding=utf-8
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
|
|
|
|
class PipelineParallel(object):
|
|
def __init__(self):
|
|
pass
|