Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TS (0.13 sec)

  1. tensorflow/c/c_api.cc

                                       TF_Status* status) {
      std::vector<Tensor> ts;
      status->status = tensorflow::GetNodeAttr(oper->node.attrs(), attr_name, &ts);
      if (!status->status.ok()) return;
      const auto len = std::min(max_values, static_cast<int>(ts.size()));
      for (int i = 0; i < len; ++i) {
        values[i] = TF_TensorFromTensor(ts[i], &status->status);
      }
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top