Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for float2 (0.38 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer); public static StringBuffer format(double, int, StringBuffer); public static StringBuffer format(double, double, StringBuffer); private static StringBuffer...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    }
    
    // Converts an Attribute with a single value of float or integral type to an
    // Attribute holding a single value of float type. If attr has no elements, the
    // result is 0.0f.
    TypedAttr ConvertSingleElementAttrToFloatAttr(Attribute attr) {
      const auto dense_fp_attr = mlir::dyn_cast_or_null<DenseFPElementsAttr>(attr);
      if (dense_fp_attr) {
        // Already float => return
        return dense_fp_attr;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // expected-warning @+1 {{Image should be a 4D float tensor}}
    func.func private @dense_image_warp_invalid_input_shape(%arg0: tensor<2x4x4xf32>, %arg1: tensor<2x4x4x2xf32>) -> tensor<2x4x4x1xf32> attributes {tf._implements = "addons:DenseImageWarp"}
    
    // expected-warning @+1 {{Flow should be a 4D float tensor}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Trunc64to32 (Const64  [c])) => (Const32  [int32(c)])
    (Cvt64Fto32F (Const64F [c])) => (Const32F [float32(c)])
    (Cvt32Fto64F (Const32F [c])) => (Const64F [float64(c)])
    (Cvt32to32F  (Const32  [c])) => (Const32F [float32(c)])
    (Cvt32to64F  (Const32  [c])) => (Const64F [float64(c)])
    (Cvt64to32F  (Const64  [c])) => (Const32F [float32(c)])
    (Cvt64to64F  (Const64  [c])) => (Const64F [float64(c)])
    (Cvt32Fto32  (Const32F [c])) => (Const32  [int32(c)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/encoding/json/testdata/code.json.gz

    min_t":1228781586,"max_t":1244593336,"mean_t":1236526846},{"name":"line-flow-with-floats-4-expected.checksum","kids":[],"cl_weight":0.0017318415877075515,"touches":3,"min_t":1229478785,"max_t":1238022568,"mean_t":1234568989},{"name":"line-flow-with-floats-1-expected.png","kids":[],"cl_weight":0.0017318415877075515,"touches":3,"min_t":1229478785,"max_t":1238022568,"mean_t":1234568989},{"name":"line-flow-with-floats-6-expected.png","kids":[],"cl_weight":0.0017318415877075515,"touches":3,"min_t":12...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    	events := make([]timestampedScaleEvent, len(rawEvents))
    	segmentDuration := float64(periodSeconds) / float64(len(rawEvents))
    	for idx, event := range rawEvents {
    		segmentBoundary := time.Duration(float64(periodSeconds) - segmentDuration*float64(idx+1) + segmentDuration/float64(2))
    		events[idx] = timestampedScaleEvent{
    			replicaChange: int32(event),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    						OutlierDetection: outlier,
    					},
    				},
    			}))
    		g.Expect(c.CommonLbConfig.HealthyPanicThreshold).To(Not(BeNil()))
    		g.Expect(c.CommonLbConfig.HealthyPanicThreshold.GetValue()).To(Equal(float64(0)))
    	}
    }
    
    func TestApplyOutlierDetection(t *testing.T) {
    	g := NewWithT(t)
    
    	tests := []struct {
    		name string
    		cfg  *networking.OutlierDetection
    		o    *cluster.OutlierDetection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer); public static StringBuffer format(double, int, StringBuffer); public static StringBuffer format(double, double, StringBuffer); private static StringBuffer...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    func.func @testLeakyWrongAlphaType(tensor<16xf32>) -> tensor<16xf32> {
    ^bb0(%arg0: tensor<16xf32>):
      // expected-error @+1 {{attribute 'alpha' failed to satisfy constraint: 32-bit float}}
      %0 = "tf.LeakyRelu"(%arg0) {alpha = 1: i32}: (tensor<16xf32>) -> tensor<16xf32>
      func.return %0 : tensor<16xf32>
    }
    
    // -----
    
    // Test tf.Min with complex numbers.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer); public static StringBuffer format(double, int, StringBuffer); public static StringBuffer format(double, double, StringBuffer); private static StringBuffer...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
Back to top