Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for placeholder (0.19 sec)

  1. tensorflow/c/c_api.cc

    }
    
    void TF_SetAttrPlaceholder(TF_OperationDescription* desc, const char* attr_name,
                               const char* placeholder) {
      tensorflow::AttrValue attr_value;
      attr_value.set_placeholder(placeholder);
      desc->node_builder.Attr(attr_name, attr_value);
    }
    
    void TF_SetAttrFuncName(TF_OperationDescription* desc, const char* attr_name,
    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)
  2. tensorflow/c/eager/c_api.cc

                    .data());
          }
        } break;
        case tensorflow::AttrValue::kTensor:
          TF_FALLTHROUGH_INTENDED;
        case tensorflow::AttrValue::kPlaceholder:
          TF_FALLTHROUGH_INTENDED;
        case tensorflow::AttrValue::VALUE_NOT_SET:
          TF_SetStatus(
              status, TF_UNIMPLEMENTED,
              tensorflow::strings::StrCat("Unable to get setfor default value: ",
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
Back to top