Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for ireduce (0.35 sec)

  1. gradle.properties

    # Reduce Xmx after https://github.com/gradle/gradle-private/issues/4168 is resolved
    org.gradle.jvmargs=-Xmx2700m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    org.gradle.caching=true
    org.gradle.configuration-cache=true
    systemProp.gradle.publish.skip.namespace.check=true
    # Kotlin DSL settings
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    ## Compiler {#compiler}
    
    The build time overhead to building with [Profile Guided Optimization](/doc/pgo) has been reduced significantly.
    Previously, large builds could see 100%+ build time increase from enabling PGO.
    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        BuildReduceBody<AddOp>(input_type.getElementType(), &reduce.getBody(),
                               &rewriter);
        rewriter.replaceOpWithNewOp<ReshapeOp>(
            op,
            tensorflow::GetTypeFromTFTensorShape(new_dims,
                                                 input_type.getElementType()),
            reduce.getResult(0));
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

      // CHECK-NEXT:     %[[GROUP:.*]] = "tf.Const"()
      // CHECK-SAME:       [0, 1, 2, 3]
      // CHECK-NEXT:     %[[REDUCED:.*]] = "tf.XlaAllReduce"(%[[ID]], %[[GROUP]]) <{mode = "CrossReplica", reduce_op = "Add"}> : (tensor<f32>, tensor<1x4xi32>) -> tensor<f32>
      // CHECK-NEXT:     "tf.OpA"(%[[REDUCED]]) : (tensor<f32>) -> ()
      tf_device.replicate {n = 4 : i32} {
        "tf_device.cluster"() ({
          "tf.OpA"(%arg0) : (tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// responsible for ensuring that all text strings they produce contain valid UTF-8
    		// sequences and may use the byte string major type to encode strings that have not
    		// been validated.
    		UTF8: cbor.UTF8RejectInvalid,
    
    		// Never make a case-insensitive match between a map key and a struct field.
    		FieldNameMatching: cbor.FieldNameMatchingCaseSensitive,
    
    		// Produce string concrete values when decoding a CBOR byte string into interface{}.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/runlit.cfg.py

        'odml_to_stablehlo',
        'odml-converter',
        'stable-quant-opt',
        'tac-opt-all-backends',
        'tac-translate',
        'tf-mlir-translate',
        'tf-opt',
        'tf-quant-opt',
        'tf-reduce',
        'tf-tfrt-opt',
        'tf_tfjs_translate',
        'tf_tfl_translate',
        'tfcompile',
        'tfg-opt-no-passes',
        'tfg-transforms-opt',
        'tfg-translate',
        'tfjs-opt',
    ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    Reduces `input` along the dimensions given in `axis`. Unless
    `keep_dims` is true, the rank of the tensor is reduced by 1 for each entry in
    `axis`. If `keep_dims` is true, the reduced dimensions are
    retained with length 1.
      }];
    
      let arguments = (ins
        Arg<TF_BoolTensor, [{The tensor to reduce.}]>:$input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/BUILD

    # direct dependencies to this binary.
    tf_cc_binary(
        name = "tf-opt",
        testonly = True,
        deps = [
            ":tf_mlir_opt_main",
        ],
    )
    
    tf_cc_binary(
        name = "tf-reduce",
        testonly = True,
        srcs = ["tf_mlir_reduce_main.cc"],
        deps = [
            ":init_mlir",
            ":register_common_dialects",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    	// path when imported by a package file located in dir.
    	// If the import failed, besides returning an error, ImportFrom
    	// is encouraged to cache and return a package anyway, if one
    	// was created. This will reduce package inconsistencies and
    	// follow-on type checker errors due to the missing package.
    	// The mode value must be 0; it is reserved for future use.
    	// Two calls to ImportFrom with the same path and dir must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

      tflite::FlatbufferExportOptions options;
      options.toco_flags.set_force_select_tf_ops(false);
      options.toco_flags.set_enable_select_tf_ops(true);
      options.toco_flags.set_allow_custom_ops(true);
    
      // Copy metadata for Reduced Precision Support from input model if it exists
      for (const auto& metadata : input_model.metadata) {
        if (metadata->name != tflite::optimize::kTfLiteReducedPrecisionKey) {
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top