Java教程

FDF循环互助智能合约游戏开发源码及运营版

本文主要是介绍FDF循环互助智能合约游戏开发源码及运营版,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Source code WeChat:kaifa873

if(opType!=MNN::OpType_Convolution&&opType!=MNN::OpType_ConvolutionDepthwise&&

  opType!=MNN::OpType_Eltwise){

  continue;

  }

  auto tensorsPair=_opInfo.find(op->name);

  if(tensorsPair==_opInfo.end()){

  MNN_ERROR(“Can’t find tensors for%sn”,op->name.c_str());

  }

  if(opType==MNN::OpType_Eltwise){

  auto param=op->main.AsEltwise();

  //Now only support AddInt8

  if(param->type!=MNN::EltwiseType_SUM){

  continue;

  }

  const auto&inputScale0=_scales[tensorsPair->second.first[0]];

  const auto&inputScale1=_scales[tensorsPair->second.first[1]];

  const auto&outputScale=_scales[tensorsPair->second.second[0]];

  const int outputScaleSize=outputScale.size();

  std::vector<float>outputInvertScale(outputScaleSize);

  Helper::invertData(outputInvertScale.data(),outputScale.data(),outputScaleSize);


这篇关于FDF循环互助智能合约游戏开发源码及运营版的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!