Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for node_def (0.26 sec)

  1. tensorflow/compiler/jit/encapsulate_util.cc

                                   src->name());
          placeholder_builder.Attr(kOutsideCompilationSrcOutputAttrName,
                                   src_output);
          NodeDef placeholder_def;
          TF_RETURN_IF_ERROR(placeholder_builder.Finalize(&placeholder_def));
          TF_ASSIGN_OR_RETURN(placeholder_node, g->AddNode(placeholder_def));
          placeholders[placeholder_index] = placeholder_node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_gc_manager.go

    	im := &realImageGCManager{
    		runtime:       runtime,
    		policy:        policy,
    		imageRecords:  make(map[string]*imageRecord),
    		statsProvider: statsProvider,
    		recorder:      recorder,
    		nodeRef:       nodeRef,
    		tracer:        tracer,
    	}
    
    	return im, nil
    }
    
    func (im *realImageGCManager) Start() {
    	ctx := context.Background()
    	go wait.Until(func() {
    		_, err := im.detectImages(ctx, time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager.go

    	nodeConditions []v1.NodeConditionType
    	// captures when a node condition was last observed based on a threshold being met
    	nodeConditionsLastObservedAt nodeConditionsObservedAt
    	// nodeRef is a reference to the node
    	nodeRef *v1.ObjectReference
    	// used to record events about the node
    	recorder record.EventRecorder
    	// used to measure usage stats on system
    	summaryProvider stats.SummaryProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

      // CHECK: %0 = mhlo.constant dense<[32, 12, 12, 64]> : tensor<4xi32>
      // CHECK-NEXT: %1 = "tf.RandomUniform"(%0) : (tensor<4xi32>) -> tensor<32x12x12x64xf32>
      // expected-remark@+1 {{failed to create tf2xla kernel: INVALID_ARGUMENT: NodeDef missing attrs 'seed2', 'seed' from}}
      %cst = "tf.Const"() {value = dense<[32, 12, 12, 64]> : tensor<4xi32>} : () -> tensor<4xi32>
      %0 = "tf.RandomUniform"(%cst) {} : (tensor<4xi32>) -> tensor<32x12x12x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    // Belows are the attributes in TFE.
    // TFE Arguments and Results (Got from "_Arg",
    // "_Retval", .etc)
    //  NodeDef.device <-> "tf.device"
    //  NodeDef.attr <-> "tf."
    //
    // TFE general operations
    //  NodeDef.device <-> "device"
    //
    // The following two functions are only used for mapping/excluding attributes
    // which are inconsistent between TFG and TFE.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. cluster/log-dump/log-dump.sh

      for i in "${!all_selected_nodes[@]}"; do
        node_name="${all_selected_nodes[$i]}"
        node_dir="${report_dir}/${node_name}"
        mkdir -p "${node_dir}"
        if [[ "${i}" -lt "${#linux_nodes_selected_for_logs[@]}" ]]; then
          # Save logs in the background. This speeds up things when there are
          # many nodes.
          save-logs "${node_name}" "${node_dir}" "${node_logfiles_all}" "${node_systemd_services}" &
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server.go

    	case err = <-healthzErrCh:
    		s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeWarning, "FailedToStartProxierHealthcheck", "StartKubeProxy", err.Error())
    	case err = <-metricsErrCh:
    		s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeWarning, "FailedToStartMetricServer", "StartKubeProxy", err.Error())
    	}
    	return err
    }
    
    func (s *ProxyServer) birthCry() {
    	s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeNormal, "Starting", "StartKubeProxy", "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/shape_inference.cc

                handle_shapes_and_types->at(0).shape;
            TensorShapeProto shape_proto;
            context->ShapeHandleToProto(handle, &shape_proto);
            if (!shape_proto.unknown_rank()) {
              NodeDef const_def;
              const_def.set_op("Const");
              Node* var_node;
              TF_RETURN_IF_ERROR(n->input_node(0, &var_node));
              const_def.set_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. tensorflow/c/while_loop_test.cc

      TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s_));
      string msg(TF_Message(s_));
      EXPECT_NE(msg.find("Input 'inputs' passed int32 expected float while "
                         "building NodeDef 'float_op'"),
                msg.npos);
      TF_AbortWhile(params_.get());
    }
    
    // This is a basic test to make sure the C++ gradient code can handle while
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        node_names->push_back(flag.name());
        // TOCO doesn't required `data_type` to be filled for every input.
        // If it's not filled, make it an empty string so the importer will use
        // the data type in the NodeDef.
        auto toco_data_type = flag.data_type();
        if (toco_data_type == ::toco::IODataType::IO_DATA_TYPE_UNKNOWN) {
          node_dtypes->push_back("");
        } else {
          node_dtypes->push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top