Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for multiplier (0.26 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // have a corresponding 'depth_multiplier' attribute; the multiplier is the
        // fourth dimension in the 4-D filter tensor. We query the multiplier from
        // tf.DepthwiseConv2dNative and set it as the attribute value accordingly.
        auto multiplier =
            mlir::cast<RankedTensorType>(filter.getType()).getDimSize(3);
    
        filter = legalizeFilter(rewriter, loc, filter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                    $w_factor, TFL_AF_None, $padding, $stride_h, $stride_w,
                    $multiplier)),
        (TFL_DepthwiseConv2DOp $input, $filter, $bias, $h_factor, $w_factor,
            ActFnAttr, $padding, $stride_h, $stride_w, $multiplier),
        [(HasOneUse $conv_out)]>;
    }
    
    multiclass FuseActFnIntoPoolOpPat<Op ActFnOp, ConstantStrAttr ActFnAttr> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                            parameters.multiplier.set(2)
                        }
                        registerTransform(MakeColor) {
                            from.attribute(color, 'red')
                            to.attribute(color, 'green')
                            parameters.targetColor.set('green')
                            parameters.multiplier.set(1)
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        int64_t in_channels = input_shape[3];
        // If in_channels is 1, there is no need to restore weight shape.
        if (in_channels == 1) return failure();
        int64_t multiplier = weight_shape[3] / in_channels;
    
        TensorType new_shape = RankedTensorType::get(
            {weight_shape[0], weight_shape[1], in_channels, multiplier},
            weight_type.getElementType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

        static final int MULTIPLIER = 1682554634;
        static final int SHIFT = Integer.numberOfLeadingZeros(TABLE.length() - 1);
    
        static final CharMatcher INSTANCE = new Whitespace();
    
        Whitespace() {
          super("CharMatcher.whitespace()");
        }
    
        @Override
        public boolean matches(char c) {
          return TABLE.charAt((MULTIPLIER * c) >>> SHIFT) == c;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

        static final int MULTIPLIER = 1682554634;
        static final int SHIFT = Integer.numberOfLeadingZeros(TABLE.length() - 1);
    
        static final CharMatcher INSTANCE = new Whitespace();
    
        Whitespace() {
          super("CharMatcher.whitespace()");
        }
    
        @Override
        public boolean matches(char c) {
          return TABLE.charAt((MULTIPLIER * c) >>> SHIFT) == c;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

                      of priority in case of multiple matches. A pool with no priority
                      set will be used only if the pools with priority can't be used.
                      If multiple matching IPAddressPools are available it will check
                      for the availability of IPs sorting the matching IPAddressPools
                      by priority, starting from the highest to the lowest. If multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        /**
         * A helper method to determine the value to resume the build with {@code -rf} taking into account the edge case
         *   where multiple modules in the reactor have the same artifactId.
         * <p>
         * {@code -rf :artifactId} will pick up the first module which matches, but when multiple modules in the reactor
         *   have the same artifactId, effective failed module might be later in build reactor.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.jar (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata.
      - On artifact foo-1.0.pom (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		t,
    		"testdata/valid-configs/aes/aes-cbc-multiple-providers.json",
    		"k8s:enc:aescbc:v1:1:",
    		"testdata/valid-configs/aes/aes-cbc-multiple-providers-reversed.json",
    		"k8s:enc:aescbc:v1:2:",
    	)
    }
    
    func TestCBCKeyRotationWithoutOverlappingProviders(t *testing.T) {
    	testCBCKeyRotationWithProviders(
    		t,
    		"testdata/valid-configs/aes/aes-cbc-multiple-keys.json",
    		"k8s:enc:aescbc:v1:A:",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top