Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for as_str (0.12 sec)

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

        std::string flops_str;
        std::string mac_str;
        if (ops_count < 10000) {
          flops_str = absl::StrFormat("%ld ", ops_count);
          mac_str = absl::StrFormat("%ld ", ops_count / 2);
        } else if (ops_count < billion) {
          flops_str =
              absl::StrFormat("%.3f M ", static_cast<double>(ops_count) / million);
          mac_str = absl::StrFormat("%.3f M ",
    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/c/c_api.cc

    const char* TF_OperationName(TF_Operation* oper) {
      return oper->node.name().c_str();
    }
    
    const char* TF_OperationOpType(TF_Operation* oper) {
      return oper->node.type_string().c_str();
    }
    
    const char* TF_OperationDevice(TF_Operation* oper) {
      return oper->node.requested_device().c_str();
    }
    
    int TF_OperationNumOutputs(TF_Operation* oper) {
      return oper->node.num_outputs();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    		arns = append(arns, rCfg.RoleArn)
    	} else {
    		for _, rule := range rCfg.Rules {
    			arns = append(arns, rule.Destination.String())
    		}
    	}
    	var sameTarget bool
    	for _, arnStr := range arns {
    		arn, err := madmin.ParseARN(arnStr)
    		if err != nil {
    			return sameTarget, errorCodes.ToAPIErrWithErr(ErrBucketRemoteArnInvalid, err)
    		}
    		if arn.Type != madmin.ReplicationService {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Association potager.org : https://potager.org/
    // Submitted by Lunar <******@****.***>
    pimienta.org
    poivron.org
    potager.org
    sweetpepper.org
    
    // ASUSTOR Inc. : http://www.asustor.com
    // Submitted by Vincent Tseng <vincenttseng@asustor.com>
    myasustor.com
    
    // Atlassian : https://atlassian.com
    // Submitted by Sam Smyth <******@****.***>
    cdn.prod.atlassian-dev.net
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top