Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for XlaDot (0.1 sec)

  1. tensorflow/compiler/jit/xla_ops_on_regular_devices.cc

      REGISTER_KERNEL_BUILDER(Name("XlaSvd").Device(DEVICE),                       \
                              XlaCompileOnDemandOp);                               \
      REGISTER_KERNEL_BUILDER(Name("XlaDot").Device(DEVICE),                       \
                              XlaCompileOnDemandOp);                               \
      REGISTER_KERNEL_BUILDER(Name("XlaDotV2").Device(DEVICE),                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 19:55:14 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

    // CHECK: %[[XLADOT:.*]] = "tf.XlaDotV2"(%arg0, %[[SHARDED_W]]) <{dimension_numbers = "\12\01\00\0A\01\03", precision_config = ""}> {device = ""} : (tensor<?x?x?x?xf32>, tensor<512x512xf32>) -> tensor<?x?x?x?xf32>
    // CHECK: %[[ORIGINAL_CAST:.*]] = "tf.Cast"(%[[XLADOT]]) <{Truncate = false}> : (tensor<?x?x?x?xf32>) -> tensor<?x?x?x?xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          d2.add_rhs_batch_dimensions(v);
        }
        for (auto v : d1.rhs_contracting_dimensions()) {
          d2.add_rhs_contracting_dimensions(v);
        }
      }
    }
    
    // Figure out the shape of other xladot argument for reducing contracting
    // dimension.
    // It must have the contracting dimensions on its shape, to reduce the
    // contracting dims from the original target. In addition, to match with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    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. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0 : tensor<4x4x14x14x16xf32>
    }
    
    //===----------------------------------------------------------------------===//
    // tf.XlaDot legalization
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: @xladot_matmul(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      if (!dims.ParseFromString(attr.getValue().str())) return {};
      return ::xla::ConvertGatherDimensionNumbers(dims, builder);
    }
    
    //===----------------------------------------------------------------------===//
    // XlaDot op utilities.
    //===----------------------------------------------------------------------===//
    
    bool HasValidDotDims(StringAttr attr) {
      ::xla::DotDimensionNumbers dims;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeListAttr operand_dtypes = TF_DerivedOperandTypeListAttr<0>;
      TF_DerivedResultTypeListAttr result_dtypes = TF_DerivedResultTypeListAttr<0>;
    }
    
    def TF_XlaDotOp : TF_Op<"XlaDot", [Pure, TF_NoConstantFold]> {
      let summary = "Wraps the XLA DotGeneral operator, documented at";
    
      let description = [{
    https://www.tensorflow.org/performance/xla/operation_semantics#dotgeneral
    .
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top