Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 305 for Transformed (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // the user did not explicitly specify.
    QuantizationConfig PopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    // transformed into other fields in `QuantizationConfig`.
    //
    // The expansion rules are as follows:
    // * StaticRangePtqPreset
    //   - The preset's `representative_datasets` field will be transferred to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * foo -> foo.bar
         * foo.baz -> foo.bar
         *
         * @param filePath the file path to transform
         * @param extension the extension to use in the transformed path
         * @return the transformed path
         */
        public static String withExtension(String filePath, String extension) {
            if (filePath.toLowerCase(Locale.ROOT).endsWith(extension)) {
                return filePath;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/type.go

    func (f exprFlags) Assignable() bool      { return f&64 != 0 }
    func (f exprFlags) HasOk() bool           { return f&128 != 0 }
    func (f exprFlags) IsRuntimeHelper() bool { return f&256 != 0 } // a runtime function called from transformed syntax
    
    func (f *exprFlags) SetIsVoid()          { *f |= 1 }
    func (f *exprFlags) SetIsType()          { *f |= 2 }
    func (f *exprFlags) SetIsBuiltin()       { *f |= 4 }
    func (f *exprFlags) SetIsValue()         { *f |= 8 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    	// Transformer allows the value to be transformed prior to persisting into etcd.
    	Transformer value.Transformer
    
    	// CompactionInterval is an interval of requesting compaction from apiserver.
    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    Status SetShapeAttribute(absl::string_view name, mlir::ShapedType shape,
                             AttrValueMap* values);
    
    // Returns true if the given instruction is an mlir::TF::LegacyCallOp or the
    // result of such an operation transformed by the
    // ExecutorToControlDialectConversion pass.
    //
    // TODO(b/145706023): When the ExecutorToControlDialectConversion pass runs
    // before the exporter, it mutates an mlir::TF::LegacyCallOp instruction to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/inheritance.apt

     The super model is where we place all the values which we believe to be standard, values that can be shared and
     utilized across all your Maven projects.
    
    +-----+
     m0 <- m1 <- m2
    +-----+
    
     which is transformed into
    
    +-----+
     super model <- m0 <- m1 <- m2
    +-----+
    
    +-----+
    <project>
     <modelVersion>4.0.0</modelVersion>
     <parent>
       <groupId></groupId>
       <artifactId></artifactId>
       <version></version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    done for every inference invocation. A further optimization can fuse this (at
    host) with the double transpose to minimize memory operation on host.
    
    ## Proposed Method
    
    **block\_size** is defined as the number of space sizes transformed to the depth
    dimension. _stride % block\_size == 0_ and _stride >= block\_size_ is required
    to do the transform. There are three parts of automatically space to depth
    transformation:
    
    1.  Transform input on the host.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfo.java

        /**
         * Given a line from /proc/meminfo, return number value representing number of bytes.
         *
         * @param line String line from /proc/meminfo. Example: "MemAvailable:    2109560 kB"
         * @return number from value transformed to bytes or -1 if unparsable. Example: 2_160_189_440
         */
        private long parseMeminfoBytes(final String line) {
            Matcher matcher = meminfoMatcher.reset(line);
            if (matcher.matches()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/preprocess_op_weight_only.mlir

    module {
      // For XLA weight-only per-channel depthwise convolution, tensor shape should have
      // transformed from [H,W,C,M] to [H,W,1,CxM],
      func.func @depthwise_conv(%arg0: tensor<1x3x4x3xf32>) -> (tensor<*xf32>) {
        %cst_0 = "tf.Const"() {value = dense<0.000000e+00> : tensor<6xf32>} : () -> tensor<6xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/internal/fuzz/sys_posix.go

    // receives one of these.
    //
    // Note that Go installs its own signal handlers on startup, so some of these
    // signals may only be received if signal handlers are changed. For example,
    // SIGSEGV is normally transformed into a panic that causes the process to exit
    // with status 2 if not recovered, which we handle as a crash.
    func isCrashSignal(signal os.Signal) bool {
    	switch signal {
    	case
    		syscall.SIGILL,  // illegal instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top