Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for opset (0.05 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        ],
        copts = ["-O3"],
        deprecation = "odml_to_stablehlo is being deprecated, please use TFlite converter with flag: " +
                      "converter.target_spec.supported_ops = " +
                      " [tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS]",
        deps = [
            ":check_accepted_ops_pass",
            ":op_stat_pass",
            ":stablehlo_util",
            ":transforms",
            "//tensorflow/cc/saved_model:loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		}
    
    		startTime := time.Now()
    		txnResp, err := s.client.KV.Txn(ctx).If(
    			clientv3.Compare(clientv3.ModRevision(key), "=", origState.rev),
    		).Then(
    			clientv3.OpDelete(key),
    		).Else(
    			clientv3.OpGet(key),
    		).Commit()
    		metrics.RecordEtcdRequest("delete", s.groupResourceString, err, startTime)
    		if err != nil {
    			return err
    		}
    		if !txnResp.Succeeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_linux.go

    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/iptables"
    	"k8s.io/kubernetes/pkg/proxy/ipvs"
    	utilipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    	utilipvs "k8s.io/kubernetes/pkg/proxy/ipvs/util"
    	"k8s.io/kubernetes/pkg/proxy/nftables"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	"k8s.io/utils/exec"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

              "ops and disabling `_experimental_lower_tensor_list_ops` flag in the "
              "TFLite converter object. For example, "
              "converter.target_spec.supported_ops = "
              "[tf.lite.OpsSet.TFLITE_BUILTINS, tf.lite.OpsSet.SELECT_TF_OPS]\\n "
              "converter._experimental_lower_tensor_list_ops = False");
          signalPassFailure();
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    // As the names of these symbols are derived from the string of
    // the type, they can run to many kilobytes long. So we shorten
    // them using a SHA-1 when the name appears in the final binary.
    // This also removes characters that upset external linkers.
    //
    // These are the symbols that begin with the prefix 'type.' and
    // contain run-time type information used by the runtime and reflect
    // packages. All Go binaries contain these symbols, but only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    	s.SetData(data)
    	s.SetSize(int64(len(data)))
    
    	// Add reference to go:buildinfo from the rodata section,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. RELEASE.md

            be properly resized at runtime.
            *   Enabled experimental support for a new quantization mode with 16-bit
                activations and 8-bit weights. See
                `lite.OpsSet.EXPERIMENTAL_TFLITE_BUILTINS_ACTIVATIONS_INT16_WEIGHTS_INT8`.
    *   CPU
        *   Fix an issue w/ dynamic weights and `Conv2D` on x86.
        *   Add a runtime Android flag for enabling `XNNPACK` for optimized CPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top