Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for batch_func (0.1 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

               std::vector<string>{"then_branch", "else_branch"}) {
            NameAttrList branch_func;
            TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), attr_name, &branch_func));
            (*branch_func.mutable_attr())["_device_ordinal"] = device_ordinal_value;
            n->ClearAttr(attr_name);
            n->AddAttr(attr_name, branch_func);
          }
        } else if (n->IsWhileNode()) {
    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/ir/tf_ops_a_m.cc

        auto branch_func = symbol_table.lookupNearestSymbolFrom<func::FuncOp>(
            op, mlir::cast<SymbolRefAttr>(branch.value()));
        if (!branch_func)
          return op->emitOpError()
                 << "expects " << branch_name(branch.index()) << " ("
                 << branch.value() << ") to point to a defined function";
    
        FunctionType branch_type = branch_func.getFunctionType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top