Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for filterMap (0.17 sec)

  1. pilot/pkg/networking/core/extension/wasmplugin.go

    func PopAppendHTTP(list []*hcm.HttpFilter,
    	filterMap map[extensions.PluginPhase][]*model.WasmPluginWrapper,
    	phase extensions.PluginPhase,
    ) []*hcm.HttpFilter {
    	for _, ext := range filterMap[phase] {
    		list = append(list, toEnvoyHTTPFilter(ext))
    	}
    	delete(filterMap, phase)
    	return list
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. operator/pkg/object/objects.go

    	}
    }
    
    func ObjectsNotInLists(objects K8sObjects, lists ...K8sObjects) K8sObjects {
    	var ret K8sObjects
    
    	filterMap := make(map[*K8sObject]bool)
    	for _, list := range lists {
    		for _, object := range list {
    			filterMap[object] = true
    		}
    	}
    
    	for _, o := range objects {
    		if !filterMap[o] {
    			ret = append(ret, o)
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. internal/config/config.go

    			tgtName := strings.TrimPrefix(k, envVarPrefix)
    			if tgtName != "" {
    				if v, ok := filterMap[k]; ok {
    					if strings.HasPrefix(envVarPrefix, v) {
    						filterMap[k] = envVarPrefix
    					}
    				} else {
    					filterMap[k] = envVarPrefix
    				}
    			}
    		}
    	}
    
    	for k, v := range filterMap {
    		seen.Add(strings.TrimPrefix(k, v))
    	}
    
    	seen.Remove(Default)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

        suite.addTest(filterSortedMapSuite());
        suite.addTest(filterNavigableMapSuite());
        return suite;
      }
    
      static TestSuite filterMapSuite() {
        TestSuite suite = new TestSuite("FilterMap");
        suite.addTest(
            MapTestSuiteBuilder.using(
                    new TestStringMapGenerator() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

                             %filter_scale : tensor<*xf32>, %filter_zp : tensor<*xi32>,
                             %out_scale : tensor<*xf32>, %out_zp : tensor<*xi32>) -> tensor<*xi8> {
        %rescale = "tf.PartitionedCall"(%accumulation, %input_scale, %input_zp, %filter_scale, %filter_zp,
                                    %out_scale, %out_zp) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

                             %filter_scale : tensor<*xf32>, %filter_zp : tensor<*xi32>, %out_scale : tensor<*xf32>, %out_zp : tensor<*xi32>) -> tensor<*x!tf_type.qint32> {
        %conv_out = "tf.UniformQuantizedConvolution"(%input, %filter,
                                    %input_scale, %input_zp, %filter_scale, %filter_zp, %out_scale, %out_zp) {
            Tin = "tfdtype$DT_QINT8",
            Tout = "tfdtype$DT_QINT32",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

      %filter_scale = "tf.Const"() { value = dense<0.047> : tensor<f32> } : () -> tensor<f32>
      %filter_zp = "tf.Const"() { value = dense<0> : tensor<i32> } : () -> tensor<i32>
      %quant_filter = "tf.Cast"(%filter) {} : (tensor<3x3x10x20xi8>) ->
        tensor<3x3x10x20x!tf_type.qint8>
      %filter_new = "tf.UniformDequantize"(%quant_filter, %filter_scale, %filter_zp) {
        quantization_axis = -1 : i64, quantization_min_val = -128 : i64,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_tf_drq.mlir

                             %input : tensor<*xi8>, %filter : tensor<*xi8>,
                             %input_scale : tensor<*xf32>, %input_zp : tensor<*xi32>,
                             %filter_scale : tensor<*xf32>, %filter_zp : tensor<*xi32>) -> tensor<*xi32> {
        %0 = "tf.Cast"(%input) {Truncate = false} : (tensor<*xi8>) -> tensor<*xi32>
        %1 = "tf.Sub"(%0, %input_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        }
    
        // The filter of the convolution may have a `ConvertOp` after the constant
        // op.
        Operation* filter_op = op.getOperand(1).getDefiningOp();
        if (!isa<stablehlo::ConstantOp>(filter_op) &&
            !(isa<stablehlo::ConvertOp>(filter_op) &&
              isa<stablehlo::ConstantOp>(
                  filter_op->getOperand(0).getDefiningOp()))) {
          LLVM_DEBUG(llvm::dbgs() << "Failed to match filter_constant_op.\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // Make sure the filter is a constant or a constant transpose.
        Operation* filter_op = filter.getDefiningOp();
        const bool is_constant = isa_and_nonnull<stablehlo::ConstantOp>(filter_op);
        const bool is_constant_transpose =
            isa_and_nonnull<stablehlo::TransposeOp>(filter_op) &&
            isa_and_nonnull<stablehlo::ConstantOp>(
                filter_op->getOperand(0).getDefiningOp());
        if (!is_constant && !is_constant_transpose) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top