Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for interfaceMethod (0.34 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

      }];
    
      let methods = [
        InterfaceMethod<
          [{Returns the indices of sparse operands.}],
          "std::vector<int>", "GetSparseOperands", (ins)
        >,
        InterfaceMethod<
          [{Returns the supported block size of float sparse operands.}],
          "std::vector<std::vector<int>>", "GetFloatBlockSize", (ins)
        >,
        InterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    }
    
    func (recv *T[Q]) concreteMethod(mParam Q) (mResult Q) { return }
    
    type FT[P any] func(ftParam P) (ftResult P)
    
    func F[P any](fParam P) (fResult P){ return }
    
    type I[P any] interface {
    	interfaceMethod(P)
    }
    
    type R[P any] T[P]
    
    func (R[P]) m() {} // having a method triggers expansion of R
    
    var (
    	t T[int]
    	ft FT[int]
    	f = F[int]
    	i I[int]
    )
    
    func fn() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    }
    
    func (recv *T[Q]) concreteMethod(mParam Q) (mResult Q) { return }
    
    type FT[P any] func(ftParam P) (ftResult P)
    
    func F[P any](fParam P) (fResult P){ return }
    
    type I[P any] interface {
    	interfaceMethod(P)
    }
    
    type R[P any] T[P]
    
    func (R[P]) m() {} // having a method triggers expansion of R
    
    var (
    	t T[int]
    	ft FT[int]
    	f = F[int]
    	i I[int]
    )
    
    func fn() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top