Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for TestMin (0.1 sec)

  1. src/math/cmplx/cmath_test.go

    		if f := Rect(polarSC[i].r, polarSC[i].theta); !cAlike(vcPolarSC[i], f) {
    			t.Errorf("Rect(%g, %g) = %g, want %g", polarSC[i].r, polarSC[i].theta, f, vcPolarSC[i])
    		}
    	}
    }
    func TestSin(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Sin(vc[i]); !cSoclose(sin[i], f, 2e-15) {
    			t.Errorf("Sin(%g) = %g, want %g", vc[i], f, sin[i])
    		}
    	}
    	for _, v := range sinSC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      return %0 : tensor<1x80x1x!quant.uniform<i16:f32, 0.0066055487841367722:0>>
    }
    
    // CHECK-LABEL: testSin
    func.func @testSin(tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.sin"(%arg0)
      %0 = "tfl.sin"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top