Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 384 for cc_ops (0.12 sec)

  1. tensorflow/cc/ops/standard_ops.h

    #include "tensorflow/cc/ops/data_flow_ops.h"
    #include "tensorflow/cc/ops/image_ops.h"
    #include "tensorflow/cc/ops/io_ops.h"
    #include "tensorflow/cc/ops/linalg_ops.h"
    #include "tensorflow/cc/ops/logging_ops.h"
    #include "tensorflow/cc/ops/lookup_ops.h"
    #include "tensorflow/cc/ops/math_ops.h"
    #include "tensorflow/cc/ops/nn_ops.h"
    #include "tensorflow/cc/ops/no_op.h"
    #include "tensorflow/cc/ops/parsing_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_main.cc

    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/init_main.h"
    #include "tensorflow/core/platform/types.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace cc_op {
    namespace {
    
    void PrintAllCCOps(const std::string& dot_h, const std::string& dot_cc,
                       bool include_internal,
                       const std::vector<string>& api_def_dirs) {
      OpList ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

      llvm::SmallVector<TF::IfRegionOp, 8> sub_merged_groups;
      auto begin_if_op_iter = if_ops.begin();
    
      while (begin_if_op_iter != if_ops.end()) {
        auto current_last_if_op_iter =
            FindLastIfInSegment(begin_if_op_iter, if_ops, side_effect_analysis);
        assert(current_last_if_op_iter != if_ops.end());
        llvm::SmallVector<TF::IfRegionOp, 8> sub_if_group;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      // it's a constant. Basically, `paddings` tensor in `SpaceToBatch` and `crops`
      // tensor  in `BatchToSpace` must satisfy the following:
      //  paddings[i, 0] = base_paddings[i, 0].
      //  0 <= paddings[i, 1] - base_paddings[i, 1] < block_shape[i]
      // (input_shape[i] + paddings[i, 0] + paddings[i, 1]) % block_shape[i] == 0.
      //  crops[i, 0] = 0.
      //  crops[i, 1] = paddings[i, 1] - base_paddings[i, 1].
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    from tensorflow.python.ops import array_ops_stack  # pylint: disable=g-direct-tensorflow-import
    from tensorflow.python.ops import io_ops
    from tensorflow.python.ops import lookup_ops
    from tensorflow.python.ops import math_ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.ops import random_ops
    from tensorflow.python.ops import string_ops
    from tensorflow.python.ops import variables
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace cc_op {
    
    // String with single fuzzer file content.
    string WriteSingleFuzzer(const OpInfo& op_info, bool is_fuzzable);
    
    // Do we have all we need to create a fuzzer
    bool OpFuzzingIsOk(const OpInfo& op_info);
    
    }  // namespace cc_op
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

            return true;
          }
    
          // Check if the preceding op is a quantized same-scale op.
          if (llvm::isa<quantfork::StorageCastOp>(preceding_op)) {
            auto sc_op = llvm::cast<quantfork::StorageCastOp>(preceding_op);
            auto sc_arg_type = sc_op.getArg().getType().dyn_cast<TensorType>();
            if (sc_arg_type.getElementType().isInteger(8)) {
              return true;
            }
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

        TFL::FullyConnectedOp fc_op, PatternRewriter& rewriter) const {
      // We have to know the shape of the input.
      auto input = fc_op.getInput();
      auto input_type = mlir::dyn_cast_or_null<RankedTensorType>(input.getType());
      if (!input_type || !input_type.hasStaticShape()) return failure();
    
      // We have to know the shape of the weight.
      auto weight = fc_op.getFilter();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top