Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 819 for more (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/core/transforms/toposort/pass.h"
    #include "tensorflow/core/util/device_name_utils.h"
    
    namespace mlir {
    namespace TF {
    namespace {
    
    // FIXME: This should be consistent with
    // tensorflow::kImportModelDefaultGraphFuncName
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compilation_cache.h

          entry->compilation_status = *compilation_status;
        }
        if (compilation_result.has_value()) {
          entry->compilation_result = std::move(*compilation_result);
        }
        if (executable.has_value()) {
          entry->executable = std::move(*executable);
        }
      }
    
      VLOG(4) << "Added/updated cache entry: key=" << key.HumanString()
              << ", entry=" << entry->DebugString();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

      TF_DerivedResultTypeListAttr Tout = TF_DerivedResultTypeListAttr<0>;
    
      let hasVerifier = 1;
    }
    
    // TODO(chky): Consider adding this op to tensorflow core ops.
    def TF_PwStreamResultsOp : TF_Op<"PwStreamResults"> {
      let summary = "Streams results back to the controller";
    
      let description = [{
        This op is a TensorFlow op that represents "streamed outputs", where
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_test.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace calibrator {
    namespace {
    
    using ::testing::ElementsAre;
    
    TEST(CalibrationStatisticsCollectorTest, SimpleMinMax) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <algorithm>
    #include <memory>
    #include <utility>
    #include <vector>
    
    #include "Eigen/Core"  // from @eigen_archive
    #include "llvm/ADT/SetVector.h"
    #include "llvm/Support/Debug.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace mlir {
    namespace TFL {
    
    func::FuncOp createLstmCompositeFunc(mlir::Builder* builder, bool ln,
                                         bool cifg) {
      SmallVector<int64_t, 2> input_shape{1, 2};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          // as its result index.
          if (is_func && isa<func::ReturnOp>(user)) {
            assert(!info.IsResultIndexAssigned() &&
                   "Expect resource argument to returned no more than once");
            info.result_index = use.getOperandNumber();
            continue;
          }
    
          auto read = dyn_cast<TF::ReadVariableOp>(user);
          auto write = dyn_cast<TF::AssignVariableOp>(user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

    #include "tensorflow/compiler/tf2xla/cc/ops/xla_ops.h"
    #include "xla/status_macros.h"
    #include "tensorflow/core/common_runtime/shape_refiner.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/public/session_options.h"
    #include "tensorflow/core/util/device_name_utils.h"
    #include "tensorflow/core/util/dump_graph.h"
    
    namespace tensorflow {
    namespace {
    
    // StatusOrOptional<T> instances hold
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/util/matmul_bcast.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    
    template <typename BatchMatMulOpType>
    class ConvertTFBatchMatMulOp : public OpRewritePattern<BatchMatMulOpType> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // This test runs twice:
    //   1. Through FILECHECK_OPTS="" FileCheck with chlo legalization disabled since verifying
    //      that the chlo ops emit produces more useful tests.
    //   2. With chlo legalization enabled, verifying diagnostics to pick up any
    //      issues with the full lowering (can catch some broadcasting corner
    //      cases which emit with a warning).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top