Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for totalBytes (0.15 sec)

  1. cmd/metrics-v2.go

    		Namespace: bucketMetricNamespace,
    		Subsystem: usageSubsystem,
    		Name:      totalBytes,
    		Help:      "Total bucket size in bytes",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterUsageTotalBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: clusterMetricNamespace,
    		Subsystem: usageSubsystem,
    		Name:      totalBytes,
    		Help:      "Total cluster usage in bytes",
    		Type:      gaugeMetric,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_launch_util.cc

        }
      }
    
      if (allocate_xla_tensors) {
        Tensor output_tensor;
        TF_RETURN_IF_ERROR(
            ctx->allocate_temp(output_dtype, output_shape, &output_tensor));
        if (output_tensor.TotalBytes() > 0) {
          XlaTensor* xla_tensor = XlaTensor::FromTensor(&output_tensor);
          TF_RET_CHECK(xla_tensor);
          xla_tensor->set_shaped_buffer(output.TakeSubTree({output_num}));
          if (use_multiple_streams) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

    }
    
    ElementsAttr ConvertTensorOfCustomFloatType(const Tensor& tensor,
                                                RankedTensorType type) {
      auto buffer =
          llvm::ArrayRef(static_cast<char*>(tensor.data()), tensor.TotalBytes());
      return mlir::DenseElementsAttr::getFromRawBuffer(type, buffer);
    }
    
    absl::StatusOr<ElementsAttr> ConvertStringTensor(const Tensor& input_tensor,
                                                     ShapedType type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. src/runtime/metrics_test.go

    			cpu.total = samples[i].Value.Float64()
    		case "/cpu/classes/user:cpu-seconds":
    			cpu.user = samples[i].Value.Float64()
    		case "/memory/classes/total:bytes":
    			totalVirtual.got = samples[i].Value.Uint64()
    		case "/memory/classes/heap/objects:bytes":
    			objects.totalBytes = samples[i].Value.Uint64()
    		case "/gc/heap/objects:objects":
    			objects.total = samples[i].Value.Uint64()
    		case "/gc/heap/allocs:bytes":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    			}
    		}
    	}()
    
    	b.SetBytes(totalBytes)
    	clientConfig := testConfig.Clone()
    	clientConfig.CipherSuites = nil // the defaults may prefer faster ciphers
    	clientConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    	clientConfig.MaxVersion = version
    
    	buf := make([]byte, bufsize)
    	chunks := int(math.Ceil(float64(totalBytes) / float64(len(buf))))
    	for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.cc

        return 0;
      }
      const tensorflow::Tensor* tensor;
      status->status = handle->Tensor(&tensor);
      if (!status->status.ok()) {
        return 0;
      }
      return tensor->TotalBytes();
    }
    
    TFE_Op* TFE_NewOp(TFE_Context* ctx, const char* op_or_function_name,
                      TF_Status* status) {
      tensorflow::ImmediateExecutionOperation* new_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. cmd/metrics-v3-cluster-usage.go

    package cmd
    
    import (
    	"context"
    	"time"
    )
    
    const (
    	usageSinceLastUpdateSeconds   = "since_last_update_seconds"
    	usageTotalBytes               = "total_bytes"
    	usageObjectsCount             = "count"
    	usageVersionsCount            = "versions_count"
    	usageDeleteMarkersCount       = "delete_markers_count"
    	usageBucketsCount             = "buckets_count"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/c/eager/dlpack.cc

            "Unsupported byte_offset (", dl_tensor->byte_offset,
            ") from DLPack, must be zero");
        return nullptr;
      }
    
      size_t total_bytes = dl_tensor->dtype.bits / 8;
      for (int i = 0; i < num_dims; i++) {
        total_bytes *= dims[i];
      }
    
      if (dl_tensor->strides != nullptr &&
          !IsValidStrideCompactRowMajorData(dl_tensor->shape, dl_tensor->strides,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cmd/metrics-v3-system-drive.go

    )
    
    var allDriveLabels = []string{driveL, poolIndexL, setIndexL, driveIndexL}
    
    const (
    	driveUsedBytes               = "used_bytes"
    	driveFreeBytes               = "free_bytes"
    	driveTotalBytes              = "total_bytes"
    	driveUsedInodes              = "used_inodes"
    	driveFreeInodes              = "free_inodes"
    	driveTotalInodes             = "total_inodes"
    	driveTimeoutErrorsTotal      = "timeout_errors_total"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/runtime/metrics.go

    			deps: makeStatDepSet(gcStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = in.gcStats.stackScan
    			},
    		},
    		"/gc/scan/total:bytes": {
    			deps: makeStatDepSet(gcStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = in.gcStats.totalScan
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top