Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 217 for cc_ops (0.15 sec)

  1. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/str_util.h"
    #include "tensorflow/core/platform/types.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace cc_op {
    namespace {
    
    void WriteAllFuzzers(string root_location, std::vector<string> api_def_dirs,
                         std::vector<string> op_names) {
      OpList ops;
      absl::StatusOr<ApiDefMap> api_def_map =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace cc_op {
    /// Result is written to files dot_h and dot_cc.
    void WriteCCOps(const OpList& ops, const ApiDefMap& api_def_map,
                    const string& dot_h_fname, const string& dot_cc_fname);
    
    }  // namespace cc_op
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:31:16 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/BUILD

    gentbl_cc_library(
        name = "tf_ops_inc_gen",
        tbl_outs = [
            (
                ["-gen-op-decls"],
                "tf_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "tf_ops.cpp.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "tf_ops.td",
        deps = [":tf_mlrt_td_files"],
    )
    
    cc_library(
        name = "tf_mlrt_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 17:04:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.h

    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace cc_op {
    
    absl::StatusOr<ApiDefMap> LoadOpsAndApiDefs(
        OpList& ops, bool include_internal,
        const std::vector<string>& api_def_dirs);
    
    // Converts:
    //   bazel-out/.../(bin|genfiles)/(external/YYY/)?XX
    // to: XX.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. tensorflow/c/kernels/BUILD

    tf_gen_op_libs(
        op_lib_names = ["bitcast"],
        deps = [
            "//tensorflow/c:ops",
            "//tensorflow/c:tf_datatype",
            "//tensorflow/c:tf_status",
            "//tensorflow/c:tf_tensor",
            "//tensorflow/core:lib",
        ],
    )
    
    tf_gen_op_libs(
        op_lib_names = ["summary"],
        deps = [
            "//tensorflow/c:ops",
            "//tensorflow/c:tf_status",
            "//tensorflow/core:lib",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cc

    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Transforms/InliningUtils.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.h"
    
    namespace tensorflow {
    namespace tf_mlrt {
    
    namespace {
    
    struct TensorflowMlrtInlinerInterface : public mlir::DialectInlinerInterface {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_simple.td

    include "mlir/IR/OpBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "mlir/Dialect/Arith/IR/ArithOps.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 Mar 28 23:21:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_book.yaml

        - name: Guide
          contents:
          - title: Overview
            path: /mlir/overview
          - heading: Dialects
          - title: Overview
            path: /mlir/dialects
          - title: TensorFlow
            path: /mlir/tf_ops
          - title: TensorFlow Lite
            path: /mlir/tfl_ops
          - heading: Passes
          - title: TF dialect
            path: /mlir/tf_passes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 22 15:00:03 UTC 2022
    - 674 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/integration/graph_decompose_test.py

    from tensorflow.python.eager import def_function
    from tensorflow.python.framework import constant_op
    from tensorflow.python.framework import load_library
    from tensorflow.python.framework import ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.platform import test
    
    _lib_dir = os.path.dirname(gen_composite_ops.__file__)
    _lib_name = os.path.basename(gen_composite_ops.__file__)[4:].replace(
        '.py', '.so')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/integration/node_expansion_test.py

    from tensorflow.python.framework import load_library
    from tensorflow.python.framework import ops
    from tensorflow.python.ops import gen_resource_variable_ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.platform import test
    
    _lib_dir = os.path.dirname(gen_composite_ops.__file__)
    _lib_name = os.path.basename(gen_composite_ops.__file__)[4:].replace(
        '.py', '.so')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top