Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for isF64 (0.04 sec)

  1. src/time/zoneinfo_read.go

    	// describe a broader range of dates.
    
    	is64 := false
    	if version > 1 {
    		// Skip the 32-bit data.
    		skip := n[NTime]*4 +
    			n[NTime] +
    			n[NZone]*6 +
    			n[NChar] +
    			n[NLeap]*8 +
    			n[NStdWall] +
    			n[NUTCLocal]
    		// Skip the version 2 header that we just read.
    		skip += 4 + 16
    		d.read(skip)
    
    		is64 = true
    
    		// Read the counts again, they can differ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      } else if (element_ty.isF32()) {
        auto value = APFloat(std::numeric_limits<float>::epsilon());
        return DenseElementsAttr::get(scalar_ty, value);
      } else if (element_ty.isF64()) {
        auto value = APFloat(std::numeric_limits<double>::epsilon());
        return DenseElementsAttr::get(scalar_ty, value);
      }
      llvm_unreachable("unsupported element type for tf.SoftPlus");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top