Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for REWRITES (0.11 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                FindUserOfType<TFL::QuantizeOp>(op) != nullptr);
      }
    };
    
    // Rewrites `stablehlo.convolution` into fused `tfl.conv_2d`.
    // If available, fuse bias and activation adjacent to `stablehlo.convolution`.
    // This RewritePattern rewrites both the following into `tfl.conv_2d` op:
    //
    // StableHLO Quantizer output:
    //   * input: per-tensor qi8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          main_graph->AddControlEdge(copy, xla_computation_node);
        }
      };
      ReverseDFS(*host_graph, /*enter=*/nullptr, copy_node_fn, NodeComparatorID());
      return s;
    }
    
    // Rewrites shape inference graph for outside compilation:
    // 1) If XlaSendFromHost also exists in `host_graph`, copy nodes from
    //    `host_graph`. Because we might still have outside compilation to outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "globally unique within a process, not just within a module.">
      ];
    }
    
    def ConvertLaunchFuncToTFCallPass : Pass<"tf-device-convert-launch-func-to-tf-call", "ModuleOp"> {
      let summary = "Rewrites tf_device::LaunchFuncOp to TF::PartitionedCallOp";
    
      let description = [{
        This pass converts tf_device::LaunchFuncOp into an equivalent
        TF::PartitionedCallOp so that it can be exported to TensorFlow GraphDef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    // the vendored paths, so nothing should ever call p.vendored(p.Imports).
    func (p *Package) Resolve(imports []string) []string {
    	if len(imports) > 0 && len(p.Imports) > 0 && &imports[0] == &p.Imports[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    // This check is made by counting uses of the magic constant multiplication.
    // Note that if there were an intermediate opt pass, this rule could be applied
    // directly on the Div op and magic division rewrites could be delayed to late opt.
    
    // Unsigned divisibility checks convert to multiply and rotate.
    (Eq8 x (Mul8 (Const8 [c])
      (Trunc32to8
        (Rsh32Ux64
          mul:(Mul32
            (Const32 [m])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // as in -test.v. When invoking the generated test binary (the result of
    // 'go test -c') directly, however, the prefix is mandatory.
    //
    // The 'go test' command rewrites or removes recognized flags,
    // as appropriate, both before and after the optional package list,
    // before invoking the test binary.
    //
    // For instance, the command
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top