Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for Decomposes (0.23 sec)

  1. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.h

      GraphExportConfig export_confs_;
    };
    
    // Decomposes the NodeDef to a set of primitive ops according to the decompose
    // library loaded. Wrap the decomposed result in a FunctionDef.
    absl::StatusOr<FunctionDef> ExpandNode(const NodeDef& node_def,
                                           StringPiece func_name);
    
    // Decomposes the ops in the ModuleOp to a set of primitive ops according to
    // decompose library in the context.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 11:12:54 UTC 2024
    - 3.2K 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/lite/transforms/decompose_hybrid_quantization.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass decomposes dense operations that assume
    // support for hybrid quantization. These cases cover when a dense operation
    // (e.g. matmul) has both quantized and unquantized inputs by dequantizing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    	return &asyncCall{region: call, async: call, scope: fun, fun: fun}
    }
    
    var forbidden = []string{
    	"FailNow",
    	"Fatal",
    	"Fatalf",
    	"Skip",
    	"Skipf",
    	"SkipNow",
    }
    
    // forbiddenMethod decomposes a call x.m() into (x, x.m, m) where
    // x is a variable, x.m is a selection, and m is the static callee m.
    // Returns (nil, nil, nil) if call is not of this form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top