Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for cc_ops (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    // refreshes.
    //
    // This file includes another file, `tf_generated_ops.td`, which contains
    // all ops whose definitions are generated from TensorFlow codebase.
    // Changes made there are not respected.
    
    #ifndef TF_OPS
    #define TF_OPS
    
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "mlir/Interfaces/CallInterfaces.td"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

            "//tensorflow/cc:cc_ops",
            "//tensorflow/cc:cc_ops_internal",
            "//tensorflow/cc:function_ops",
            "//tensorflow/cc:functional_ops",
            "//tensorflow/cc:ops",
            "//tensorflow/cc:resource_variable_ops",
            "//tensorflow/cc:sendrecv_ops",
            "//tensorflow/compiler/jit/kernels:xla_ops",
            "//tensorflow/compiler/tf2xla:xla_compiler",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

      @parameterized.parameters(
          testing.parameter_combinations([{
              'bias_fn': (
                  None,
                  nn_ops.bias_add,
              ),
              'activation_fn': (
                  None,
                  nn_ops.relu,
                  nn_ops.relu6,
              ),
              'dim_sizes': (
                  # tf.MatMul cases.
                  ([None, 1024], [1024, 3]),  # dynamic batch dim.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        //    `reshaped_permuted` according to `crops` to produce the output of
        //    shape:
        //      [batch / prod(block_shape),
        //
        //       input_shape[1] * block_shape[0] - crops[0,0] - crops[0,1],
        //       ...,
        //       input_shape[M] * block_shape[M-1] - crops[M-1,0] - crops[M-1,1],
        //
        //       input_shape[M+1], ..., input_shape[N-1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. tensorflow/BUILD

                    "//tensorflow/c:env",
                    "//tensorflow/c:kernels",
                    "//tensorflow/c:kernels_experimental",
                    "//tensorflow/c:logging",
                    "//tensorflow/c:ops",
                    "//tensorflow/cc/saved_model:fingerprinting_impl",
                    "//tensorflow/cc/saved_model:loader_lite_impl",
                    "//tensorflow/cc/saved_model:metrics_impl",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/mangling_util.h"
    #include "tensorflow/core/ir/importexport/convert_tensor.h"
    
    namespace mlir {
    namespace quant {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    #include "tensorflow/compiler/mlir/lite/utils/size_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/validators.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/einsum.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    #include "tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_ops.td"
    include "tensorflow/compiler/mlir/lite/utils/utils.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // Checks if the param passed is a F32 ElementsAttr.
    def F32ElementsAttr : ElementsAttrBase<
      CPred<"$_self.isa<ElementsAttr>() && $_self.cast<ElementsAttr>().getShapedType().getElementType().isF32()">,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_structs.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top