Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 534 for sCases (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

    {
      %scales = "tf.Const"() { value = dense<1.0> : tensor<f32> } : () -> tensor<f32>
      %zps = "tf.Const"() { value = dense<3> : tensor<i32> } : () -> tensor<i32>
    
      // CHECK: %[[qint:.*]] = "tf.UniformQuantize"
      // CHECK: %[[int:.*]] = "tf.Cast"(%[[qint]]) <{Truncate = false}> : (tensor<1x!tf_type.qint8>) -> tensor<1xi8>
      %0 = "tf.UniformQuantize"(%arg0, %scales, %zps) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/lifecycles.apt.vm

      <<<default>>> lifecycle is defined only with phases, <<without>> any associated plugin binding:
      plugins bindings for this lifecycle are {{{./default-bindings.html}defined separately for each packaging}}:
    
    %{snippet|id=default|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java}
    
    * <<<clean>>> Lifecycle
    
      <<<clean>>> lifecycle phases are defined with their plugins bindings:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 08 14:57:39 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

            private final String name;
            private final List<Plugin> plugins;
            private final List<Lifecycle.Phase> phases;
    
            DefaultPhase(String name, List<Plugin> plugins, List<Lifecycle.Phase> phases) {
                this.name = name;
                this.plugins = plugins;
                this.phases = phases;
            }
    
            @Override
            public String name() {
                return name;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

      // the operand doesn't support per-channel quantization.
      llvm::DenseMap<int, int> coeff_op_quant_dim;
    
      // Indices of quantizable operands. Biases are not included in this field,
      // the indices of biases can be found in the `biases_params`.
      absl::flat_hash_set<int> quantizable_operands;
    };
    
    // A function signature for getting the particular OpQuantSpec for the provided
    // op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/node.go

    	addUpgradeNodeFlags(cmd.Flags(), nodeOptions)
    	options.AddConfigFlag(cmd.Flags(), &nodeOptions.cfgPath)
    	options.AddPatchesFlag(cmd.Flags(), &nodeOptions.patchesDir)
    
    	// initialize the workflow runner with the list of phases
    	nodeRunner.AppendPhase(phases.NewPreflightPhase())
    	nodeRunner.AppendPhase(phases.NewControlPlane())
    	nodeRunner.AppendPhase(phases.NewKubeletConfigPhase())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    		workEstimator func() fcrequest.WorkEstimate,
    		queueNoteFn fq.QueueNoteFn,
    		execFn func(),
    	)
    
    	// Run monitors config objects from the main apiservers and causes
    	// any needed changes to local behavior.  This method ceases
    	// activity and returns after the given channel is closed.
    	Run(stopCh <-chan struct{}) error
    
    	// Install installs debugging endpoints to the web-server.
    	Install(c *mux.PathRecorderMux)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/operations/MaxWorkersTest.groovy

            cleanup:
            workerLeaseService?.stop()
        }
    
        def "BuildOperationExecutor can fully utilize worker leases when multiple threads owning worker leases are submitting work (maxWorkers: #maxWorkers)"() {
            CountDownLatch leaseAcquiredLatch = new CountDownLatch(maxWorkers)
            CountDownLatch runningLatch = new CountDownLatch(maxWorkers)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    			}
    		})
    	}
    }
    
    func phaseBuilder3(name string, hidden bool, phases ...Phase) Phase {
    	return Phase{
    		Name:   name,
    		Short:  fmt.Sprintf("long description for %s ...", name),
    		Phases: phases,
    		Hidden: hidden,
    	}
    }
    
    func TestHelp(t *testing.T) {
    	var w = Runner{
    		Phases: []Phase{
    			phaseBuilder3("foo", false,
    				phaseBuilder3("bar [arg]", false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tests/test_tf_to_stablehlo.mlir

        func.func @main(%arg0 : tensor<?xf32>) -> tensor<?xf32> {
          %scales = "tf.Const"() { value = dense<1.0> : tensor<f32> } : () -> tensor<f32>
          %zps = "tf.Const"() { value = dense<3> : tensor<i32> } : () -> tensor<i32>
    
          %0 = "tf.UniformQuantize"(%arg0, %scales, %zps) {
            quantization_axis = -1 : i64, quantization_min_val = -128 : i64, quantization_max_val = 127 : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeletphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubelet"
    	patchnodephase "k8s.io/kubernetes/cmd/kubeadm/app/phases/patchnode"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/uploadconfig"
    )
    
    var (
    	uploadKubeadmConfigLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
    		Upload the kubeadm ClusterConfiguration to a ConfigMap called %s in the %s namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top