Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 291 for nFront (0.21 sec)

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

        if (failed(DecomposeTensorListOpsInternal(
                &branch.front(), module, &branch_map,
                decomposed_partitioned_call_callees)))
          return failure();
      }
    
      const bool arg_no_changed = branch_maps.front().empty();
      auto output_buffer_to_size =
          ModifyFunctionReturn(branches.front(), branch_maps.front());
      for (const auto& pair : llvm::drop_begin(llvm::zip(branches, branch_maps), 1))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/certs/util.go

    				"ca.key":                 caKey,
    				"front-proxy-ca.crt":     fpCACert,
    				"front-proxy-client.crt": fpCert,
    				"front-proxy-client.key": fpKey,
    				"etcd/ca.crt":            etcdCACert,
    				"etcd/ca.key":            etcdCAKey,
    			},
    		},
    		{
    			Name: "FrontProxy certs missing CA",
    			Files: PKIFiles{
    				"front-proxy-client.crt": fpCert,
    				"front-proxy-client.key": fpKey,
    			},
    			ExpectError: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

      const bool signature_change = !then_map.empty() || !else_map.empty();
      if (failed(DecomposeStackOpsInternal(&then_func.front(), module, &then_map,
                                           decomposed_partitioned_call_callees)) ||
          failed(DecomposeStackOpsInternal(&else_func.front(), module, &else_map,
                                           decomposed_partitioned_call_callees))) {
        return failure();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

                                            num_cores_per_replica);
      for (mlir::Region& region : old_parallel_execute.getRegions()) {
        if (!llvm::isa<tf_device::ClusterFuncOp>(region.front().front())) {
          for (Type t : region.front().front().getResultTypes())
            concatenated_output_types.emplace_back(t);
        }
      }
    
      for (int core = 0; core < num_cores_per_replica; ++core) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      if (auto control_node = dyn_cast<mlir::TFL::ControlNodeOp>(*op)) {
        return IsFlexDelegate(&control_node.getBody().front().front());
      }
      if (auto custom_tf_op = dyn_cast<mlir::TFL::CustomTfOp>(*op)) {
        return IsFlexDelegate(&custom_tf_op.getBody().front().front());
      }
    
      // Our MLIR might be the result of a conversion from a previously generated
      // flatbuffer file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

    bool IsSupportedGraph(func::FuncOp func) {
      if (!llvm::hasSingleElement(func)) return false;
    
      Block& block = func.front();
      if (!llvm::hasSingleElement(block.without_terminator())) return false;
    
      auto graph = llvm::dyn_cast<tf_executor::GraphOp>(block.front());
      if (!graph) return false;
    
      Operation* terminator = block.getTerminator();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certlist.go

    // KubeadmCertFrontProxyCA is the definition of the CA used for the front end proxy.
    func KubeadmCertFrontProxyCA() *KubeadmCert {
    	return &KubeadmCert{
    		Name:     "front-proxy-ca",
    		LongName: "self-signed CA to provision identities for front proxy",
    		BaseName: kubeadmconstants.FrontProxyCACertAndKeyBaseName,
    		config: pkiutil.CertConfig{
    			Config: certutil.Config{
    				CommonName: "front-proxy-ca",
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/phases/certs/certs.go

    }
    
    // UsingExternalFrontProxyCA determines whether the user is relying on an external front-proxy CA.  We currently implicitly determine this is the case
    // when the front proxy CA Cert is present but the front proxy CA Key is not.
    // In case we are using an external front-proxy CA, the function validates the certificates signed by front-proxy CA that should be provided by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

      added_call_op->setAttr(kInterfaceNameAttr, interface_name);
    
      StringAttr device = mlir::cast<StringAttr>(
          added_func_op->getRegion(0).getBlocks().front().front().getAttr(kDevice));
      StringAttr inference_type = mlir::cast<StringAttr>(
          added_func_op->getRegion(0).getBlocks().front().front().getAttr(
              kInferenceType));
      added_call_op->setAttr(kDevice, device);
      added_call_op->setAttr(kInferenceType, inference_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top