Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for nFront (0.36 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      void EnqueueCallers(func::FuncOp fn);
    
      // Returns the function at the front of the queue.
      func::FuncOp front() { return queue_.front(); }
    
      // Returns whether work queue is empty.
      bool EmptyQueue() const { return queue_.empty(); }
    
      // Returns function from the front of the work queue.
      func::FuncOp pop_front() {
        func::FuncOp ret = queue_.front();
        queue_.pop();
        queue_set_.erase(ret);
        return ret;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        int num = getNext().front().getTerminator()->getNumOperands();
    
        // The number of extra values from the parent ops that should go to `next`
        // and `finalize`.
        regions.push_back(RegionSuccessor(
            &getNext(), getNext().front().getArguments().slice(0, num)));
        regions.push_back(RegionSuccessor(
            &getFinalize(), getFinalize().front().getArguments().slice(0, num)));
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (then_tensor.getRank() > 0)
          data_first_dim = then_tensor.getShape().front();
        if (else_tensor.getRank() > 0)
          data_first_dim = std::max(else_tensor.getShape().front(), data_first_dim);
      } else if (then_has_rank) {
        data_rank = then_tensor.getRank();
        if (then_tensor.getRank() > 0)
          data_first_dim = then_tensor.getShape().front();
      } else if (else_has_rank) {
        data_rank = else_tensor.getRank();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        return a.name < b.name;
      });
    
      // Move onto the front of the module in reverse of the final desired order.
      for (auto func : llvm::reverse(private_funcs)) {
        func.getOperation()->moveBefore(&module.getBody()->front());
      }
      for (auto named_func : llvm::reverse(named_funcs)) {
        named_func.func.getOperation()->moveBefore(&module.getBody()->front());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (op.getCond().front().getNumArguments() !=
          op.getBody().front().getNumArguments())
        return op.emitOpError(llvm::formatv(
            "number of arguments in condition function does not match number of "
            "arguments in body function ({0} != {1})",
            op.getCond().front().getNumArguments(),
            op.getBody().front().getNumArguments()));
      // Verify shapes are compatible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (auto call_op = dyn_cast<mlir::func::CallOp>(b.front()))
          return subgraph_index_map_.at(call_op.getCallee().str());
        return std::nullopt;
      };
      auto body_subgraph_index = get_call_index(op.getBody().front());
      auto cond_subgraph_index = get_call_index(op.getCond().front());
      if (!body_subgraph_index || !cond_subgraph_index)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      if (!comparator.hasOneBlock()) return false;
      Block& comparator_blk = comparator.front();
      using OpListType = llvm::iplist<Operation>;
      OpListType& operations = comparator_blk.getOperations();
      if (operations.size() != 2) return false;
      auto compare_op = dyn_cast_or_null<mhlo::CompareOp>(&operations.front());
      auto return_op = dyn_cast_or_null<ReturnOpType>(&operations.back());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

          --project "${PROJECT}" --zone "${ZONE}" \
          --access-config-name "${ACCESS_CONFIG_NAME}" \
          --address "${IP_ADDR}"
      fi
    }
    
    # Creates load balancer in front of apiserver if it doesn't exists already. Assumes there's only one
    # existing master replica.
    #
    # Assumes:
    #   PROJECT
    #   MASTER_NAME
    #   ZONE
    #   REGION
    function create-loadbalancer() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	if !modload.ForceUseModules {
    		panic("modload.ForceUseModules must be true")
    	}
    	if modload.RootMode != modload.NoRoot {
    		panic("modload.RootMode must be NoRoot")
    	}
    
    	// Check that the arguments satisfy syntactic constraints.
    	var version string
    	var firstPath string
    	for _, arg := range args {
    		if i := strings.Index(arg, "@"); i >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
      let constructor = "TF::CreatePrintPass()";
    }
    
    def MoveTpuCompileToFrontPass : Pass<"tf-move-tpu-compile-to-front", "mlir::func::FuncOp"> {
      let summary = "Moves compile ops to the front.";
      let description = [{
        Moves all _TPUCompileMlir ops as far to the front as possible. For example,
        if we have:
    
          %0 = "tf.OpA"(...)
          %1 = "tf._TPUCompileMlir"(...)
          %2 = "tf.OpB"(...)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top