Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for greatest (0.25 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      } else {
        bias_const_op = FindOperandOfType<stablehlo::ConstantOp>(op);
      }
      return isa<stablehlo::ConstantOp>(bias_const_op) ? bias_const_op : nullptr;
    }
    
    // Creates a new `tfl.qconst` op for the quantized filter. Transposes the
    // filter value from [i, o] -> [o, i]. This is because we assume `[i, o]`
    // format for `stablehlo.dot_general` (i.e. contracting dimension == 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    		cases = append(cases, TrafficTestCase{
    			name: d[0].Config().Service,
    			// This creates a Gateway with a TCP listener that will accept TCP traffic from host
    			// `fqdn` and forward that traffic back to `fqdn`, from srcPort to targetPort
    			config: httpGateway("*", gatewayListenPort, gatewayListenPortName, "TCP", "") + // use the default label since this test creates its own gateway
    				tcpVirtualService("gateway", fqdn, "", 80, ports.TCP.ServicePort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_DecimalMax_MESSAGE = "{constraints.DecimalMax.message}";
    
        /** The key of the message: {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}. */
        public static final String CONSTRAINTS_DecimalMin_MESSAGE = "{constraints.DecimalMin.message}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
      let constructor = "TF::CreateHoistLoopInvariantPass()";
    }
    
    def LocalizeVarHandlesPass : Pass<"tf-localize-var-handles", "ModuleOp"> {
      let summary = "Creates VarHandleOps next to the operations that use them.";
      let description = [{
          Creates VarHandleOps right next to the operations that use them, one
          per operation.
          This is useful for transformations that only end up with a few small
    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. pkg/scheduler/framework/runtime/framework_test.go

    					},
    				},
    			},
    			plugins: buildScoreConfigDefaultWeights(scorePlugin1, scoreWithNormalizePlugin1),
    			err:     true,
    		},
    		{
    			name:    "Score plugin return score greater than MaxNodeScore",
    			plugins: buildScoreConfigDefaultWeights(scorePlugin1),
    			pluginConfigs: []config.PluginConfig{
    				{
    					Name: scorePlugin1,
    					Args: &runtime.Unknown{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return nullptr;
      }
      SmallVector<int64_t> new_shape = {lookup_type.getNumElements(),
                                        value_type.getDimSize(0)};
      return value_type.clone(new_shape);
    }
    
    // Creates FullyConnected op from params and returns the output.
    mlir::Value GetFcOutput(OpBuilder *builder,
                            ::mlir::Operation::result_range result, Value input,
                            Value filter, Value bias,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	return kl.usernsManager.GetOrCreateUserNamespaceMappings(pod, runtimeHandler)
    }
    
    // GeneratePodHostNameAndDomain creates a hostname and domain name for a pod,
    // given that pod's spec and annotations or returns an error.
    func (kl *Kubelet) GeneratePodHostNameAndDomain(pod *v1.Pod) (string, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %size_splits = arith.constant dense<[-2]> : tensor<1xi32>
      %split_dim = arith.constant dense<0> : tensor<i32>
      // expected-error @+1 {{'tfl.split_v' op elements of 'size_splits' should be greater than or equal to -1}}
      %0 = "tfl.split_v"(%arg0, %size_splits, %split_dim) {num_splits = 1 : i32} : (tensor<16x4x4xf32>, tensor<1xi32>, tensor<i32>) -> tensor<16x4x4xf32>
      func.return %0 : tensor<16x4x4xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "properties": {
              "periodSeconds": {
                "default": 0,
                "description": "periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
                "format": "int32",
                "type": "integer"
              },
              "type": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // this map.
    using FeedsByNode = absl::flat_hash_map<
        absl::string_view,
        absl::flat_hash_map<int, const std::pair<std::string, ArrayInfo>*>>;
    
    // Creates from a `GraphImportConfig::InputArrays` a mapping from a feeds output
    // tensor name to index and ArrayInfo. Keys and values are backed by
    // `GraphImportConfig::InputArrays`.
    absl::StatusOr<FeedsByNode> GetFeedsByNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top