Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for node_def (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

          op_, name_mapper_.GetUniqueName(op_),
          /*ignore_unregistered_attrs=*/true);
      if (!nodedef_or.ok()) {
        return op_->emitRemark() << "failed to convert op to NodeDef: "
                                 << nodedef_or.status().ToString();
      }
    
      if (failed(PrepareParams())) return failure();
    
      std::shared_ptr<const tensorflow::NodeProperties> props;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

    gtl::FlatMap<StringPiece, const AttrValueMap*, StringPieceHasher> NodeToAttrMap(
        const tensorflow::GraphDef& graphdef) {
      gtl::FlatMap<StringPiece, const AttrValueMap*, StringPieceHasher> result;
      for (const tensorflow::NodeDef& node : graphdef.node()) {
        result[node.name()] = &node.attr();
      }
      return result;
    }
    
    gtl::FlatMap<StringPiece, const tensorflow::FunctionDef*, StringPieceHasher>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler.h

        DeviceCompilationProfiler* profiler,
        const XlaCompiler::CompilationResult** out_compilation_result,
        ExecutableType** out_executable) {
      const NodeDef& def = ctx->op_kernel().def();
      NameAttrList name;
      name.set_name(def.op());
      *name.mutable_attr() = def.attr();
      // Remove the "_class" attribute from the attribute set used to create the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

      if (materialize_derived_attrs_) {
        for (const auto& attr : derived_attrs) {
          // Add or update the derived attribute with the value. Skip the fixed
          // element type attributes, in case they are present in the NodeDef.
          if (!fixed_elt_type_attrs_.contains(attr.first())) {
            new_op->setAttr(attr.first(), attr.second);
          }
        }
      }
      // Create the tfr.cast ops on the results and replace the uses of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    		}
    
    		if !swap.IsTmpfsNoswapOptionSupported(mountUtil, nodeConfig.KubeletRootDir) {
    			nodeRef := nodeRefFromNode(string(nodeConfig.NodeName))
    			recorder.Event(nodeRef, v1.EventTypeWarning, events.PossibleMemoryBackedVolumesOnDisk,
    				"The tmpfs noswap option is not supported. Memory-backed volumes (e.g. secrets, emptyDirs, etc.) "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. tensorflow/c/kernels.h

                                                     TF_Status* status);
    
    // Returns the step ID of the given context.
    TF_CAPI_EXPORT extern int64_t TF_StepId(TF_OpKernelContext* ctx);
    
    // Returns the serialized NodeDef protocol buffer for the kernel
    TF_CAPI_EXPORT extern TF_Buffer* TF_OpKernelConstruction_GetNodeDef(
        TF_OpKernelConstruction* ctx, TF_Status* status);
    
    // Returns the frame ID of the given context.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_linux.go

    			const message = "CRI error: /sys is read-only: " +
    				"cannot modify conntrack limits, problems may arise later (If running Docker, see docker issue #24000)"
    			s.Recorder.Eventf(s.NodeRef, nil, v1.EventTypeWarning, err.Error(), "StartKubeProxy", message)
    		}
    	}
    
    	if s.Config.Conntrack.TCPEstablishedTimeout != nil && s.Config.Conntrack.TCPEstablishedTimeout.Duration > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top