Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for cc_ops (0.47 sec)

  1. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

    #include "tensorflow/core/platform/strcat.h"
    #include "tensorflow/core/platform/stringpiece.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/public/version.h"
    
    namespace tensorflow {
    namespace cc_op {
    namespace {
    
    string DefaultValue(OpDef_AttrDef attr) {
      static const auto* attr_default_value_map =
          new absl::flat_hash_map<StringPiece, StringPiece, StringPieceHasher>{
              {"int", "0"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/BUILD

            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Parser",
            "//tensorflow/cc:array_ops",
            "//tensorflow/cc:function_ops",
            "//tensorflow/cc:functional_ops",
            "//tensorflow/cc:ops",
            "//tensorflow/cc:scope",
            "//tensorflow/cc:tpu_ops",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/tf2xla:tf2xla_defs",
            "//tensorflow/core:core_cpu_base",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeCast : Pat<(TF_CastOp $arg0, BoolAttr:$arg1), (TFL_CastOp $arg0)>;
    
    def LegalizeBatchToSpaceND : Pat<
      (TF_BatchToSpaceNDOp $input, $block_shape, $crops),
      (TFL_BatchToSpaceNdOp $input, (CreateTFCastToInt32Op $block_shape),
         (CreateTFCastToInt32Op $crops))>;
    
    def LegalizeSpaceToBatchND : Pat<
      (TF_SpaceToBatchNDOp $input, $block_shape, $paddings),
      (TFL_SpaceToBatchNdOp $input, (CreateTFCastToInt32Op $block_shape),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

    #include "tensorflow/compiler/mlir/lite/utils/attribute_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/constant_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/validators.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/mangling_util.h"
    #include "xla/statusor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

          for (OpResult per_replica_result : replicated_output->getResults()) {
            auto [partitioned_output, id_ops] =
                GetSingleUserOfType<mlir::TF::TPUPartitionedOutputV2Op>(
                    per_replica_result);
            if (partitioned_output) {
              erase_list.insert(erase_list.end(), id_ops.begin(), id_ops.end());
              partitioned_outputs[cluster_result_id].emplace_back(
                  partitioned_output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

    include "mlir/Dialect/Arith/IR/ArithOps.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "mlir/Dialect/Shape/IR/ShapeOps.td"
    include "mlir/IR/OpBase.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    include "stablehlo/dialect/StablehloOps.td"
    include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/scoring.go

    	// Score each call site.
    	var resultNameTab map[*ir.Name]resultPropAndCS
    	for _, cs := range csl {
    		var cprops *FuncProps
    		fihcprops := false
    		desercprops := false
    		if funcInlHeur, ok := fpmap[cs.Callee]; ok {
    			cprops = funcInlHeur.props
    			fihcprops = true
    		} else if cs.Callee.Inl != nil {
    			cprops = DeserializeFromString(cs.Callee.Inl.Properties)
    			desercprops = true
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/cc_op_gen_util.cc

    #include "tensorflow/core/lib/io/path.h"
    #include "tensorflow/core/platform/strcat.h"
    #include "tensorflow/core/platform/types.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace cc_op {
    
    absl::StatusOr<ApiDefMap> LoadOpsAndApiDefs(
        OpList& ops, bool include_internal,
        const std::vector<string>& api_def_dirs) {
      OpRegistry::Global()->Export(include_internal, &ops);
      ApiDefMap api_def_map(ops);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    bool IsIotaAttr(ArrayRef<int64_t> arr, int64_t size) {
      if (arr.size() != size) return false;
      int64_t iota = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    // Convert updates into canonical form as expected by tf.scatter ops.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top