Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for fetch_op (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // output of the initializer function for non-variable resource initialization
    // will be passed on as a dependency to a new `tf.NoOp`, whose control output
    // will be merged into the main function's FetchOp. The initializer functions
    // will be removed.
    //
    // Running this pass essentially has the effect of inlining the initializer
    // functions into the main graph. This is beneficial when we wish to find and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    //
    // This allows our def-use based island coarsening algorithm to merge
    // islands that independently feed into a fetch.
    void InsertDummyIslandForFetch(FetchOp fetch) {
      llvm::SmallVector<Value, 4> data_fetches;
      llvm::SmallVector<Type, 4> data_types;
      llvm::SmallVector<Value, 4> control_fetches;
      data_fetches.reserve(fetch.getFetches().size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

                TypeID::get<TF::TPUPartitionedOutputOp>(),
                TypeID::get<TF::TPUPartitionedOutputV2Op>(),
                TypeID::get<TF::TPUReplicateMetadataOp>(),
                TypeID::get<mlir::tf_executor::FetchOp>(),
                TypeID::get<TF::OutfeedEnqueueTupleOp>(),
            };
        return ops_set;
      }();
      auto abstractOp = op->getRegisteredInfo();
      if (!abstractOp) return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool IsSupportedNonTFOp(Operation* op) {
      return isa<tf_device::ReturnOp, tf_device::ClusterOp, tf_device::LaunchOp,
                 tf_executor::EnterOp, tf_executor::ExitOp, tf_executor::FetchOp,
                 tf_executor::GraphOp, tf_executor::IslandOp,
                 tf_executor::LoopCondOp, tf_executor::MergeOp,
                 tf_executor::NextIterationSinkOp, tf_executor::SwitchNOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // and a return operation to return the Graph results.
      builder_.setInsertionPointToEnd(&graph_op.getBody().front());
      builder_.create<mlir::tf_executor::FetchOp>(graph_op.getLoc(),
                                                  inst_to_return);
      builder_.setInsertionPointToEnd(bb);
      builder_.create<mlir::func::ReturnOp>(mlir::UnknownLoc::get(context_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top