Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rtype_String (0.22 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      NameAttrList func;
      if (fld->Contains(n->type_string())) {
        func.set_name(n->type_string());
        typedef protobuf::Map<string, AttrValue> AttrMap;
        *func.mutable_attr() = AttrMap(n->attrs().begin(), n->attrs().end());
      } else if (n->IsPartitionedCall()) {
        TF_RETURN_IF_ERROR(GetNodeAttr(n->def(), "f", &func));
      } else {
        TF_RET_CHECK(n->type_string() == FunctionLibraryDefinition::kGradientOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      };
    
      if (node.type_string() == "IteratorGetNext" ||
          node.type_string() == "IteratorGetNextSync" ||
          node.type_string() == "MultiDeviceIteratorGetNextFromShard")
        return type_from_array_attr("output_shapes", "output_types");
    
      if (node.type_string() == "InfeedDequeueTuple")
        return type_from_array_attr("shapes", "dtypes");
    
      if (node.type_string() == "InfeedDequeue") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                               std::vector<int>* output_permutation,
                               NodeDef* call_def) {
            Graph* graph = graph_ptr->get();
            for (const Node* n : graph->nodes()) {
              if (n->type_string() == "_Arg" &&
                  absl::StartsWith(n->name(), "const")) {
                ++guaranteed_consts;
                EXPECT_TRUE(HasGuaranteeConstAttr(*n));
              } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

    const char* TF_OperationName(TF_Operation* oper) {
      return oper->node.name().c_str();
    }
    
    const char* TF_OperationOpType(TF_Operation* oper) {
      return oper->node.type_string().c_str();
    }
    
    const char* TF_OperationDevice(TF_Operation* oper) {
      return oper->node.requested_device().c_str();
    }
    
    int TF_OperationNumOutputs(TF_Operation* oper) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top