Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Decomposes (0.17 sec)

  1. src/cmd/compile/internal/ssa/decompose.go

    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"sort"
    )
    
    // decompose converts phi ops on compound builtin types into phi
    // ops on simple types, then invokes rewrite rules to decompose
    // other ops on those types.
    func decomposeBuiltIn(f *Func) {
    	// Decompose phis
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op != OpPhi {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateConvertLaunchFuncToTFCallPass();
    
    // A pass that decomposes composite resource operations into primitive ones like
    // ReadVariableOp, AssignVariableOp and other computations to facilitate
    // transformations like resource op lifting.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDecomposeResourceOpsPass();
    
    // A pass that decomposes composite resource operations in device cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

    }
    
    def DecomposeResourceOpsPass : Pass<"tf-device-decompose-resource-ops", "mlir::func::FuncOp"> {
      let summary = "Decompose composite resource variable operations into primitive Read/AssignVariableOp and raw computation.";
    
      let description = [{
        A pass that decomposes composite resource operations into primitive ones like
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

                                             decomposed_partitioned_call_callees)))
          return failure();
      }
      return success();
    }
    
    // Decomposes stack ops on a region and recursively decomposes called functions.
    // data_var_to_size_var: a mapping from stacks' buffer local variables to size
    // local variables.
    // decomposed_partitioned_call_callees: cache for partitioned call ops' callee
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the TensorFlow Lite dialect QuantizeVariables pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrepareQuantizeVariablesPass();
    
    // Creates an instance of the TensorFlow Lite pass that decomposes hybrid
    // quantization patterns to the same dense operation with tfl dequantization
    // and quantization patterns.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDecomposeHybridQuantizationPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/passes.td

                   "Is the corresponding integer signed">,
      ];
    }
    def DecomposeHybridQuantizationPass : Pass<"tfl-decompose-hybrid-quantization", "mlir::func::FuncOp"> {
      let summary = "Decomposes hybridge quantization to explicit quantize / dequantize";
      let description = [{
          Decomposes (with explicit quantize/dequantize ops) selected math
          operations which exist in the model with hybrid quantization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // canonicalization.
    //
    // Operations in tf dialect are lowered to XLA HLO through the following steps:
    //   . Legalizes control flow operations.
    //   . Decomposes compound resource operations so that the only remaining
    //     operations on resource variables are resource reads/writes..
    //   . Replaces resource reads/writes with function inputs/outputs and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

      for (int i = state_size + 1; i < body_args.size(); ++i) {
        body_returns.push_back(body_args[i]);
      }
      builder.create<TF::YieldOp>(loc,
                                  /*operands=*/body_returns);
    }
    
    // Decomposes any ReduceDatasetOps in `function` into a dataset iteration and a
    // call to the reduce function in the ReduceDatasetOp.
    LogicalResult DecomposeReduceDatasetInFunction(FuncOp function) {
      if (!llvm::hasSingleElement(function))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	if x != 0 {
    		utf8.EncodeRune(buf[2*JamoUTF8Len:], jamoTBase+x)
    		return 3 * JamoUTF8Len
    	}
    	return 2 * JamoUTF8Len
    }
    
    // decomposeHangul algorithmically decomposes a Hangul rune into
    // its Jamo components.
    // See https://unicode.org/reports/tr15/#Hangul for details on decomposing Hangul.
    func (rb *reorderBuffer) decomposeHangul(r rune) {
    	r -= hangulBase
    	x := r % jamoTCount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/database/sql/convert.go

    	if rv := reflect.ValueOf(vr); rv.Kind() == reflect.Pointer &&
    		rv.IsNil() &&
    		rv.Type().Elem().Implements(valuerReflectType) {
    		return nil, nil
    	}
    	return vr.Value()
    }
    
    // decimal composes or decomposes a decimal value to and from individual parts.
    // There are four parts: a boolean negative flag, a form byte with three possible states
    // (finite=0, infinite=1, NaN=2), a base-2 big-endian integer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top