Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for node_def (0.32 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          const ::tensorflow::NodeDef& node_def, const mlir::Location& loc);
    
      std::optional<CustomOptionsOffset> CreateCustomOpCustomOptions(
          const ::tensorflow::NodeDef& node_def, const mlir::Location& loc);
    
      std::unique_ptr<flexbuffers::Builder> CreateFlexBuilderWithNodeAttrs(
          const ::tensorflow::NodeDef& node_def, const mlir::Location& loc);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        }
    
        const tensorflow::OpRegistrationData* op_reg_data =
            tensorflow::OpRegistry::Global()->LookUp(node_def.op());
        if (!op_reg_data) {
          // This is likely a function call node, so we should continue.
          continue;
        }
        ::tensorflow::AddDefaultsToNodeDef(op_reg_data->op_def, &node_def);
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    )
    
    
    def _is_variable(node_def: node_def_pb2.NodeDef) -> bool:
      """Determines whether `node_def` is a variable node.
    
      Args:
        node_def: `NodeDef` to test whether it is a variable or not.
    
      Returns:
        Returns True if it is a variable.
      """
      return node_def.op == 'VarHandleOp'
    
    
    def _find_variables(
        graph_def: graph_pb2.GraphDef,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

          for (auto id = session->last_num_graph_nodes; id < num_nodes; ++id) {
            Node* const node = graph.FindNodeId(id);
            if (node != nullptr && node->IsOp()) {
              NodeDef* const node_def = graph_def.add_node();
              *node_def = node->def();
            }
          }
          *graph_def.mutable_library() = graph.flib_def().ToProto();
          if (flags::Global().more_stack_traces.value()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

    					containerGC:                  diskGC,
    					config:                       config,
    					recorder:                     &record.FakeRecorder{},
    					summaryProvider:              summaryProvider,
    					nodeRef:                      nodeRef,
    					nodeConditionsLastObservedAt: nodeConditionsObservedAt{},
    					thresholdsFirstObservedAt:    thresholdsObservedAt{},
    				}
    
    				// synchronize to detect the memory pressure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		Logger:                          logger,
    		ProbeManager:                    kubelet.probeManager,
    		Recorder:                        fakeRecorder,
    		NodeRef:                         nodeRef,
    		GetPodsFunc:                     kubelet.podManager.GetPods,
    		KillPodFunc:                     killPodNow(kubelet.podWorkers, fakeRecorder),
    		SyncNodeStatusFunc:              func() {},
    		ShutdownGracePeriodRequested:    0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		cloud:                          kubeDeps.Cloud,
    		externalCloudProvider:          cloudprovider.IsExternal(cloudProvider),
    		providerID:                     providerID,
    		nodeRef:                        nodeRef,
    		nodeLabels:                     nodeLabels,
    		nodeStatusUpdateFrequency:      kubeCfg.NodeStatusUpdateFrequency.Duration,
    		nodeStatusReportFrequency:      kubeCfg.NodeStatusReportFrequency.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

    CSI_PROXY_VERSION: $(yaml-quote "${CSI_PROXY_VERSION}")
    CSI_PROXY_FLAGS: $(yaml-quote "${CSI_PROXY_FLAGS}")
    ENABLE_CSI_PROXY: $(yaml-quote "${ENABLE_CSI_PROXY}")
    K8S_DIR: $(yaml-quote "${WINDOWS_K8S_DIR}")
    NODE_DIR: $(yaml-quote "${WINDOWS_NODE_DIR}")
    LOGS_DIR: $(yaml-quote "${WINDOWS_LOGS_DIR}")
    CNI_DIR: $(yaml-quote "${WINDOWS_CNI_DIR}")
    CNI_CONFIG_DIR: $(yaml-quote "${WINDOWS_CNI_CONFIG_DIR}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top