Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for Invert (0.18 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          } else {
            return std::nullopt;
          }
    
          // Gather custom ops.
          custom_ops_[op_name].insert(op_desc);
        } else {
          // Insert failed op to `flex_ops` or `custom_ops`.
          if (is_allowed_flex_op) {
            failed_flex_ops_[op_name].insert(op_desc);
            tfl::AttachErrorCode(
                inst->emitOpError("is neither a custom op nor a flex op"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

      TF_Run_Setup(noutputs, output_values, status);
    
      // Convert from TF_Output and TF_Tensor to a string and Tensor.
      std::vector<std::pair<string, Tensor>> input_pairs(ninputs);
      if (!TF_Run_Inputs(input_values, &input_pairs, status)) return;
      for (int i = 0; i < ninputs; ++i) {
        input_pairs[i].first = OutputName(inputs[i]);
      }
    
      // Convert from TF_Output to string names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Phi <t> nx:(Not x) ny:(Not y)) && nx.Uses == 1 && ny.Uses == 1 => (Not (Phi <t> x y))
    
    // Get rid of Convert ops for pointer arithmetic on unsafe.Pointer.
    (Convert (Add(64|32) (Convert ptr mem) off) mem) => (AddPtr ptr off)
    (Convert (Convert ptr mem) mem) => ptr
    
    // strength reduction of divide by a constant.
    // See ../magic.go for a detailed description of these algorithms.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "contains ops placed on the same host";
    
      let constructor = "TF::CreateClusterTFOpsByHostPass()";
    }
    
    def ConvertToLegacyCompileAndReplicateAttributesPass : Pass<"tf-convert-to-legacy-compile-and-replicate-attributes", "mlir::func::FuncOp"> {
      let summary = "Convert unified compilation and replication attributes back to legacy attributes.";
    
      let description = [{
        This transformation pass converts unified compilation and replication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    	}
    	shouldPanic("reflect: cannot convert slice with length 4 to pointer to array with length 8", func() {
    		_ = v.Convert(pt)
    	})
    
    	if v.CanConvert(pt.Elem()) {
    		t.Errorf("slice with length 4 should not be convertible to [8]byte")
    	}
    	shouldPanic("reflect: cannot convert slice with length 4 to array with length 8", func() {
    		_ = v.Convert(pt.Elem())
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    	if tp.Kind() == reflect.Pointer {
    		resourcePaths.Insert(sets.List[string](collectResourcePaths(t, resourcename, path, name, tp.Elem()))...)
    		return resourcePaths
    	}
    
    	if strings.Contains(strings.ToLower(name), resourcename) {
    		resourcePaths.Insert(path.String())
    	}
    
    	switch tp.Kind() {
    	case reflect.Pointer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "supports-color": "^5.3.0"
          },
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/color-convert": {
          "version": "1.9.3",
          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
          "dev": true,
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CVTSQ2SS", argLength: 1, reg: gpfp, asm: "CVTSQ2SS"},   // convert int64 to float32
    		{name: "CVTSQ2SD", argLength: 1, reg: gpfp, asm: "CVTSQ2SD"},   // convert int64 to float64
    		{name: "CVTSD2SS", argLength: 1, reg: fp11, asm: "CVTSD2SS"},   // convert float64 to float32
    		{name: "CVTSS2SD", argLength: 1, reg: fp11, asm: "CVTSS2SD"},   // convert float32 to float64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      SmallVector<unsigned int, 2> port;
    
      bool operator==(const ValuePort& other) const {
        return producer == other.producer && port == other.port;
      }
    
      ValuePort() = default;
    
      // Convert output value to ValuePort.
      explicit ValuePort(Value v) {
        OpResult opr = mlir::dyn_cast<OpResult>(v);
        if (opr) {
          producer = opr.getOwner();
          port = {opr.getResultNumber()};
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/reflect/value.go

    }
    
    // Convert returns the value v converted to type t.
    // If the usual Go conversion rules do not allow conversion
    // of the value v to type t, or if converting v to type t panics, Convert panics.
    func (v Value) Convert(t Type) Value {
    	if v.flag&flagMethod != 0 {
    		v = makeMethodValue("Convert", v)
    	}
    	op := convertOp(t.common(), v.typ())
    	if op == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top