Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for ic_stats (0.34 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

        stats.num_allocs = c_stats.num_allocs;
        stats.bytes_in_use = c_stats.bytes_in_use;
        stats.peak_bytes_in_use = c_stats.peak_bytes_in_use;
        stats.largest_alloc_size = c_stats.largest_alloc_size;
        if (c_stats.has_bytes_limit) {
          stats.bytes_limit = c_stats.bytes_limit;
        }
        stats.bytes_reserved = c_stats.bytes_reserved;
        stats.peak_bytes_reserved = c_stats.peak_bytes_reserved;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

      std::optional<stream_executor::AllocatorStats> se_stats =
          stream_executor_->GetAllocatorStats();
      if (!se_stats) {
        return std::nullopt;
      }
    
      tensorflow::AllocatorStats tf_stats;
      tf_stats.num_allocs = se_stats->num_allocs;
      tf_stats.bytes_in_use = se_stats->bytes_in_use;
      tf_stats.peak_bytes_in_use = se_stats->peak_bytes_in_use;
      tf_stats.largest_alloc_size = se_stats->largest_alloc_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows.go

    	result.InterfaceStats = iStat
    
    	return result
    }
    
    func hcsStatToInterfaceStat(hcsStats *hcsshim.HNSEndpointStats, endpointName string) statsapi.InterfaceStats {
    	iStat := statsapi.InterfaceStats{
    		Name:    endpointName,
    		RxBytes: &hcsStats.BytesReceived,
    		TxBytes: &hcsStats.BytesSent,
    	}
    	return iStat
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/next_pluggable_device/c_api.cc

        status->status = cc_status;
        return;
      }
      if (var_info->var_info.var() == nullptr) {
        cc_status = absl::InvalidArgumentError(
            "VariableInfo does not track a resource variable.");
        status->status = cc_status;
        return;
      }
    
      cc_status = cc_ctx->allocate_temp(var_info->var_info.var()->tensor()->dtype(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    }
    
    type containerStats struct {
    	container hcsshim.ContainerProperties
    	hcsStats  []hcsshim.NetworkStats
    }
    
    func (s fakeNetworkStatsProvider) GetHNSEndpointStats(endpointName string) (*hcsshim.HNSEndpointStats, error) {
    	eps := hcsshim.HNSEndpointStats{}
    	for _, c := range s.containers {
    		for _, stat := range c.hcsStats {
    			if endpointName == stat.InstanceId {
    				eps = hcsshim.HNSEndpointStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. tensorflow/c/kernels.cc

      tensorflow::NameAttrList function;
      auto cc_status = cc_ctx->GetAttr(attr_name, &function);
      if (!cc_status.ok()) {
        tsl::Set_TF_Status_from_Status(status, cc_status);
        return nullptr;
      }
      TF_Buffer* buffer = TF_NewBuffer();
      cc_status = tensorflow::MessageToBuffer(function, buffer);
      tsl::Set_TF_Status_from_Status(status, cc_status);
      if (!cc_status.ok())
        return nullptr;
      else
        return buffer;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/grappler/grappler.cc

      params.patch_version = GO_PATCH;
      params.optimizer = &optimizer;
      params.optimizer_configs = &optimizer_configs;
    
      OwnedTFStatus c_status(TF_NewStatus());
      init_fn(&params, c_status.get());
      TF_RETURN_IF_ERROR(tsl::StatusFromTF_Status(c_status.get()));
      TF_RETURN_IF_ERROR(ValidateTPOptimizerRegistrationParams(params));
      TF_RETURN_IF_ERROR(ValidateTPOptimizer(optimizer));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. tensorflow/c/ops.cc

          [shape_inference_func](InferenceContext* ctx) -> tensorflow::Status {
            TF_Status* c_status = TF_NewStatus();
            auto c_ctx = reinterpret_cast<TF_ShapeInferenceContext*>(ctx);
            shape_inference_func(c_ctx, c_status);
            tensorflow::Status result = ::tensorflow::StatusFromTF_Status(c_status);
            TF_DeleteStatus(c_status);
            return result;
          });
    }
    
    TF_ShapeHandle* TF_NewShapeHandle() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url";
    
        protected static final String OIC_CLIENT_SECRET = "oic.client.secret";
    
        protected static final String OIC_STATE = "OIC_STATE";
    
        protected final HttpTransport httpTransport = new NetHttpTransport();
    
        protected final JsonFactory jsonFactory = JacksonFactory.getDefaultInstance();
    
        @PostConstruct
        public void init() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/pjrt_device_context.cc

      if (!c_api_client.ok()) {
        done(c_api_client.status());
        return;
      }
    
      TSL_Status c_status;
      PJRT_Buffer* dst_buffer = TfnpdApi()->TFNPD_SameDevicePjRtBufferCopy(
          *c_src_buffer, (*c_api_client)->pjrt_c_client(), &c_status);
      if (!c_status.status.ok()) {
        done(c_status.status);
        return;
      }
    
      auto set_c_buffer_status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top