Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 171 for OPT (0.19 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

        ],
        alwayslink = 1,
    )
    
    # Binary with no hardwares linked.
    tf_cc_binary(
        name = "tac-opt",
        testonly = True,
        deps = [
            ":tac-opt_lib",
        ],
    )
    
    # Binary with all backends linked.
    tf_cc_binary(
        name = "tac-opt-all-backends",
        testonly = True,
        deps = [
            ":tac-opt_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

    // RUN: tf-opt %s -split-input-file -tf-xla-broadcast | FileCheck %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

    # as the Istio CNI plugin and config on
    # each master and worker node in a Kubernetes cluster.
    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: DaemonSet
    apiVersion: apps/v1
    metadata:
      name: {{ template "name" . }}-node
      namespace: {{ .Release.Namespace }}
      labels:
        k8s-app: {{ template "name" . }}-node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/net/http/clientserver_test.go

    	}
    	cst.ts = httptest.NewUnstartedServer(h)
    
    	var transportFuncs []func(*Transport)
    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case func(*Transport):
    			transportFuncs = append(transportFuncs, opt)
    		case func(*httptest.Server):
    			opt(cst.ts)
    		default:
    			t.Fatalf("unhandled option type %T", opt)
    		}
    	}
    
    	if cst.ts.Config.ErrorLog == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    // run it in your wrapper struct of this type in its `SetDefaults_` method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent_test.go

    		CaAuthenticator:  security.NewFakeAuthenticator("ca").Set("fake", ""),
    		ProxyConfig:      mesh.DefaultProxyConfig(),
    	}
    	// Run through opts one time just to get the authenticators.
    	for _, opt := range opts {
    		resp = opt(resp)
    	}
    	ca := setupCa(t, resp.CaAuthenticator)
    	resp.Security = security.Options{
    		CAEndpoint:        ca.URL,
    		CAProviderName:    "Citadel",
    		TrustDomain:       "cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // override GetNumElements method.
    template <typename OpT>
    struct ConvertTensorListInitOp : public TensorListOpConverterBase<OpT> {
      using TensorListOpConverterBase<OpT>::TensorListOpConverterBase;
      using TensorListOpConverterBase<OpT>::allow_tensorlist_pass_through_;
      using TensorListOpConverterBase<OpT>::default_to_single_batch_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val startParameterProperties: Map<String, Any?>,
            /**
             * Whether the undeclared inputs accessed while serializing the task graph will be
             * excluded from input tracking. This is a temporary opt-out flag after a change
             * was made in that behavior.
             */
            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

    #include "mlir/Dialect/Tensor/IR/Tensor.h"  // from @llvm-project
    #include "mlir/InitAllPasses.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Tools/mlir-opt/MlirOptMain.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "stablehlo/dialect/VhloOps.h"  // from @stablehlo
    #include "stablehlo/transforms/Passes.h"  // from @stablehlo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. istioctl/cmd/root.go

    		"log_as_json", "log_rotate", "log_rotate_max_age", "log_rotate_max_backups",
    		"log_rotate_max_size", "log_stacktrace_level", "log_target", "log_caller", "log_output_level",
    	}
    	for _, opt := range hiddenFlags {
    		_ = rootCmd.PersistentFlags().MarkHidden(opt)
    	}
    
    	cmd.AddFlags(rootCmd)
    
    	kubeInjectCmd := kubeinject.InjectCommand(ctx)
    	hideInheritedFlags(kubeInjectCmd, cli.FlagNamespace)
    	rootCmd.AddCommand(kubeInjectCmd)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top