Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for nFront (0.33 sec)

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

        if (call.getOperation()->getNumOperands() !=
            f.getBody().front().getNumArguments()) {
          return failure();  // RemoteCall et al
        }
    
        rewriter.startOpModification(f);
        bool changed = false;
        for (auto [call_arg, body_arg] :
             llvm::zip(call.getOperation()->getOperands(),
                       f.getBody().front().getArguments())) {
          if (call_arg.getType() != body_arg.getType()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/build.gradle.kts

        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        api(project(":build-operations"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/bootstrap/webhook.go

    }
    
    // initSSecureWebhookServer handles initialization for the HTTPS webhook server.
    // If https address is off the injection handlers will be registered on the main http endpoint, with
    // TLS handled by a proxy/gateway in front of Istiod.
    func (s *Server) initSecureWebhookServer(args *PilotArgs) {
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	if args.ServerOptions.HTTPSAddr == "" {
    		s.httpsMux = s.httpMux
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/options.go

    	// a port number is automatically chosen.
    	// If the address is empty, the secure port is disabled, and the
    	// webhooks are registered on the HTTP port - a gateway in front will
    	// terminate TLS instead.
    	HTTPSAddr string
    
    	// The listening address for gRPC. If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

    }
    
    flatbuffers::Offset<SubgraphMetadata> CreateSubgraphMetadata(
        const std::map<std::string, uint8_t>& hardware_map, mlir::Region* Region,
        flatbuffers::FlatBufferBuilder* builder) {
      auto& block = Region->front();
      int index = 0;
      std::vector<flatbuffers::Offset<tflite::OpMetadata>> ops;
      for (auto& inst : block) {
        // Const nodes are mapped to const vectors in flatbuffer, so skip.
        if (IsConst(&inst)) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. common/Makefile.common.mk

    lint-markdown:
    	@${FINDFILES} -name '*.md' -not -path './manifests/addons/dashboards/*' -print0 | ${XARGS} mdl --ignore-front-matter --style common/config/mdl.rb
    
    lint-links:
    	@${FINDFILES} -name '*.md' -print0 | ${XARGS} awesome_bot --skip-save-results --allow_ssl --allow-timeout --allow-dupe --allow-redirect --white-list ${MARKDOWN_LINT_ALLOWLIST}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

            bcasts.insert(operand);
          }
        }
        return WalkResult::advance();
      });
      OpBuilder builder(replicate);
      OpBuilder inner_builder = OpBuilder::atBlockBegin(&cluster.getBody().front());
      // mapping from original operand to new XlaAllReduce op.
      llvm::DenseMap<Value, Value> orig_to_new;
    
      for (Value bcast : bcasts) {
        if (failed(MoveBroadcastToCluster(builder, inner_builder, cluster,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        if (!variant_ty) return failure();
        ArrayRef<TensorType> subtypes = variant_ty.getSubtypes();
        if (subtypes.size() != 1) return failure();
        RankedTensorType list_element_ty =
            subtypes.front().dyn_cast<RankedTensorType>();
        if (!list_element_ty) return failure();
    
        // Extract tensor elements for the TensorList and construct result type
        // based on the number of elements and element shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top