Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for FUSIBLE (0.12 sec)

  1. tensorflow/compiler/jit/flags.cc

            opt_level;
        return true;
      }
    
      if (value == "fusible") {
        mark_for_compilation_flags->xla_auto_jit_flag
            .optimization_level_single_gpu = 1;
        mark_for_compilation_flags->xla_auto_jit_flag.optimization_level_general =
            1;
        mark_for_compilation_flags->tf_xla_ops_to_cluster = "FUSIBLE";
        return true;
      }
    
      absl::string_view value_sv(value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Replace quantization candidates with composite functions into the module.";
      let description = [{
        Mark frequent fusible patterns as functions for quantization targets.
        In addition to brining performance benefits by reducing q/dq op overhead in non-full quantization,
        this brings higher accuracy by keeping a smaller range when quantizing ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

        CreateAndReturnQuantizedBiasPattern(
            add_op, rewriter, entry_func_op, func_result_type,
            accumulation_quantized_element_type, gemm_style_op);
      } else {
        // Non fusible op
        // If an op is used multiple times and is not a broadcasted shape case,
        // do not apply quantization of fused patterns to prevent removal of
        // dependee ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                                     "(i8->f32) type filter. Got: "
                                  << filter_type.getElementType() << "\n");
          return failure();
        }
    
        // If the op has a fusible bias, make sure the bias is a constant.
        if (auto add_op = FindUserOfType<stablehlo::AddOp>(op);
            add_op != nullptr &&
            !isa<stablehlo::ConstantOp>(add_op->getOperand(1).getDefiningOp())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      MarkForCompilationPassFlags* flags = GetMarkForCompilationPassFlags();
      absl::flat_hash_set<string> allowlist;
    
      for (auto s : absl::StrSplit(flags->tf_xla_ops_to_cluster, ',')) {
        if (s == "FUSIBLE") {
          for (auto pair : *allowlist_table) {
            allowlist.insert(pair.second.begin(), pair.second.end());
          }
        } else if (allowlist_table->contains(s)) {
          auto v = allowlist_table->at(s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/testdata/Isaac.Newton-Opticks.txt

    Transmutations. Water, which is a very fluid tasteless Salt, she changes
    by Heat into Vapour, which is a sort of Air, and by Cold into Ice, which
    is a hard, pellucid, brittle, fusible Stone; and this Stone returns into
    Water by Heat, and Vapour returns into Water by Cold. Earth by Heat
    becomes Fire, and by Cold returns into Earth. Dense Bodies by
    Fermentation rarify into several sorts of Air, and this Air by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    is very conformable to the Course of Nature, which seems delighted with Transmutations. Water, which is a very fluid tasteless Salt, she changes by Heat into Vapour, which is a sort of Air, and by Cold into Ice, which is a hard, pellucid, brittle, fusible Stone; and this Stone returns into Water by Heat, and Vapour returns into Water by Cold. Earth by Heat becomes Fire, and by Cold returns into Earth. Dense Bodies by Fermentation rarify into several sorts of Air, and this Air by Fermentation, and sometimes...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top