Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for typeOf (0.09 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

             absl::EndsWith(n.name(), "_key_placeholder");
    }
    
    // Returns nodes with given type.
    std::vector<Node*> GatherNodesWithType(const Graph& g, const string& type) {
      std::vector<Node*> result;
      for (Node* n : g.nodes()) {
        if (n->type_string() == type) {
          result.push_back(n);
        }
      }
      return result;
    }
    
    // Gets data types from `arg_nodes` and fills them into `recv_at_host_dtypes`.
    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_n_z.cc

                                    PatternRewriter &rewriter) const override {
        auto type = op.getOperand().getType().dyn_cast<RankedTensorType>();
        // If the input is an unranked tensor, cannpt rewrite.
        if (!type) return failure();
    
        // Expected return type of the ToBool operation. The return type of ToBool
        // operation is always 0D tensor of bool type.
        auto result_type = op.getResult().getType().cast<RankedTensorType>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    
    	var types strings.Builder
    	if len(cl.Types) == 0 {
    		fmt.Fprintf(&types, "%*sTypes: nil", indent+2, "")
    	} else {
    		fmt.Fprintf(&types, "%*sTypes:", indent+2, "")
    		for i, t := range cl.Types {
    			types.WriteByte('\n')
    			types.WriteString(t.goString(indent+4, fmt.Sprintf("%d: ", i)))
    		}
    	}
    
    	var callConstraint string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return parser.parseGenericOperationAfterOpName(result, ops);
      }
      Type type;
      return failure(parser.parseOperandList(ops) ||
                     parser.parseOptionalAttrDict(result.attributes) ||
                     parser.parseColonType(type) ||
                     parser.resolveOperands(ops, type, result.operands) ||
                     parser.addTypeToList(type, result.types));
    }
    
    void printOneResultOp(Operation* op, OpAsmPrinter& p) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top