boxing_kernel.cpp 341 字节
Newer Older
1 2 3 4 5 6
#include "oneflow/core/kernel/boxing_kernel.h"
#include "oneflow/core/kernel/kernel_util.h"
#include "oneflow/core/operator/op_conf.pb.h"

namespace oneflow {

W
Will Zhang 已提交
7 8
template<typename T>
void BoxingKernel<T>::Forward(
9 10
    const KernelCtx& ctx,
    std::function<Blob*(const std::string&)> BnInOp2Blob) const {
W
Will Zhang 已提交
11
  TODO();
12 13 14
}

}  // namespace oneflow