Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for FUNC (0.05 sec)

  1. src/cmd/cgo/internal/test/callback.go

    func stack24()   { var buf [24]byte; use(buf[:]); C.callGoStackCheck() }
    func stack28()   { var buf [28]byte; use(buf[:]); C.callGoStackCheck() }
    func stack32()   { var buf [32]byte; use(buf[:]); C.callGoStackCheck() }
    func stack36()   { var buf [36]byte; use(buf[:]); C.callGoStackCheck() }
    func stack40()   { var buf [40]byte; use(buf[:]); C.callGoStackCheck() }
    func stack44()   { var buf [44]byte; use(buf[:]); C.callGoStackCheck() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func le_1_uint32(x uint32) bool          { return x <= 1 }
    func gt_1_uint32(x uint32) bool          { return x > 1 }
    func ge_1_uint32(x uint32) bool          { return x >= 1 }
    func eq_1_uint32(x uint32) bool          { return x == 1 }
    func ne_1_uint32(x uint32) bool          { return x != 1 }
    func lt_126_uint32(x uint32) bool        { return x < 126 }
    func le_126_uint32(x uint32) bool        { return x <= 126 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      func.return %0 : tensor<8x16xf32>
    // CHECK-LABEL: square
    // CHECK:  "tfl.square"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
    }
    
    func.func @neg(%arg0: tensor<8x16xf32>) -> tensor<8x16xf32> {
      %0 = "tf.Neg"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    // CHECK-LABEL: neg
    // CHECK:  "tfl.neg"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return
      }
      func.func @empty_func() {
        func.return
      }
    }
    
    // -----
    
    // Tests `tf_device.cluster_func` with bad `num_cores_per_replicas` attribute.
    
    module attributes {tf.versions = {producer = 888 : i32}, tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
      func.func @bad_num_cores_per_replica() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/copy_test.go

    	}
    }
    
    //go:noinline
    func tu2copy_ssa(docopy bool, data [2]byte, x *[2]byte) {
    	if docopy {
    		*x = data
    	}
    }
    func testUnalignedCopy2(t *testing.T) {
    	var a [2]byte
    	t2 := [2]byte{2, 3}
    	tu2copy_ssa(true, t2, &a)
    	want2 := [2]byte{2, 3}
    	if a != want2 {
    		t.Errorf("tu2copy got=%v, want %v\n", a, want2)
    	}
    }
    
    //go:noinline
    func tu3copy_ssa(docopy bool, data [3]byte, x *[3]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  6. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1alpha2.AllocationResult)(nil), (*resource.AllocationResult)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return %0 : tensor<4x2x!tf_type.string>
    }
    
    // -----
    
    // CHECK-LABEL: func @testBitcast
    func.func @testBitcast(%arg0: tensor<3x4xui16>) -> tensor<3x4x!tf_type.quint16> {
      %0 = "tf.Bitcast"(%arg0) : (tensor<3x4xui16>) -> tensor<3x4x!tf_type.quint16>
      func.return %0 : tensor<3x4x!tf_type.quint16>
    }
    
    // -----
    
    // CHECK-LABEL: func @testBitcast_v2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        func.return %0 : tensor<*xi32>
      }
      func.func @partitioned_called_func(%arg0: tensor<?xi32>) -> (tensor<?xi32>) {
        func.return %arg0 : tensor<?xi32>
      }
      func.func @stateful_partitioned_call_func(%arg0: tensor<?xi32>) -> (tensor<?xi32>) {
        func.return %arg0 : tensor<?xi32>
      }
      func.func @tpu_partitioned_call_func(%arg0: tensor<?xi32>) -> (tensor<?xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0#0 : tensor<?xi32>
    }
    
    // -----
    
    // CHECK-LABEL: testExp
    func.func @testExp(tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.exp"(%arg0)
      %0 = "tfl.exp"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // CHECK-LABEL: testFloor
    func.func @testFloor(tensor<? x f32>) -> 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)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Name is an unqualified name.
    type Name struct {
    	Name string
    }
    
    func (n *Name) print(ps *printState) {
    	ps.writeString(n.Name)
    }
    
    func (n *Name) Traverse(fn func(AST) bool) {
    	fn(n)
    }
    
    func (n *Name) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(n) {
    		return nil
    	}
    	return fn(n)
    }
    
    func (n *Name) GoString() string {
    	return n.goString(0, "Name: ")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top