Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 174 for Required (0.17 sec)

  1. cluster/gce/util.sh

      KONNECTIVITY_AGENT_KEY_BASE64=$(get-env-val "${master_env}" "KONNECTIVITY_AGENT_KEY")
    }
    
    # Update or verify required gcloud components are installed
    # at minimum required version.
    # Assumed vars
    #   KUBE_PROMPT_FOR_UPDATE
    function update-or-verify-gcloud() {
      local sudo_prefix=""
      if [ ! -w "$(dirname "$(which gcloud)")" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        int64_t kernel_output_feature_dim =
            GetConvolutionKernelOutputFeatureDimension(is_depthwise);
        // Create a new quantized tensor type for the filter. This is required
        // because the quantized dimension is changed from 3 -> 0. `TFL::Conv2DOp`
        // requires the quantized dimension to be 0 because it accepts a filter
        // tensor of format OHWI
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Performs transposed convolution operation on 3D inputs.
        Inputs:
          `inputs[0]`: required: the shape of output tensor
          `inputs[1]`: required: the filter weight tensor
          `inputs[2]`: required: the input activation tensor
          `inputs[3]`: optional: the bias tensor
      }];
    
      let arguments = (ins
        TFL_I32Tensor:$output_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          return op.emitOpError(
              "requires value operand to have rank at least two with `NHWC` data "
              "format");
      } else {
        // Op definition requires data_format to be either NHWC or NCHW.
        DCHECK_EQ(format, tensorflow::TensorFormat::FORMAT_NCHW);
        if (!HasRankAtLeast(op.getValue(), 3))
          return op.emitOpError(
              "requires value operand to have rank at least three with `NCHW` data "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (failed(res)) {
            // Abort if unable to find which required inputs need to be computed.
            worklist.clear();
            break;
          }
    
          if (!inputs.empty()) {
            // Enqueue required computation followed by its required operands in
            // stack.
            worklist.push_back(std::move(front));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	if timeout <= 0 {
    		return false
    	}
    	return dc.createdAt.Add(timeout).Before(nowFunc())
    }
    
    // resetSession checks if the driver connection needs the
    // session to be reset and if required, resets it.
    func (dc *driverConn) resetSession(ctx context.Context) error {
    	dc.Lock()
    	defer dc.Unlock()
    
    	if !dc.needReset {
    		return nil
    	}
    	if cr, ok := dc.ci.(driver.SessionResetter); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top