Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for func_0 (0.28 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      func.return %0 : tensor<i32>
    }
    }
    
    // CHECK:     func.func @simpleWhile(%arg0: tensor<i32>) -> tensor<i32> {
    // CHECK:       %0 = call @func_0_CPU_FLOAT(%arg0) {tac.device = "CPU", tac.inference_type = "FLOAT", tac.interface_name = "func_0"} : (tensor<i32>) -> tensor<i32>
    // CHECK:       return %0 : tensor<i32>
    // CHECK:     }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

      if (GetName(funcs[0]) == GetName(func0)) {
        AssertEqual(func0, funcs[0]);
        AssertEqual(func1, funcs[1]);
      } else {
        AssertEqual(func0, funcs[1]);
        AssertEqual(func1, funcs[0]);
      }
    
      TF_DeleteFunction(funcs[0]);
      TF_DeleteFunction(funcs[1]);
    
      TF_DeleteFunction(func0);
      TF_DeleteFunction(func1);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		{`package s8; func _() { f(g, h) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `h`, `func(int, string)`},
    		{`package s9; func _() { f(g, h[int]) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `h`, `func[P, Q any](P, Q)`}, // go.dev/issues/60212
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/reflect/type.go

    func FuncOf(in, out []Type, variadic bool) Type {
    	if variadic && (len(in) == 0 || in[len(in)-1].Kind() != Slice) {
    		panic("reflect.FuncOf: last arg of variadic func must be slice")
    	}
    
    	// Make a func type.
    	var ifunc any = (func())(nil)
    	prototype := *(**funcType)(unsafe.Pointer(&ifunc))
    	n := len(in) + len(out)
    
    	if n > 128 {
    		panic("reflect.FuncOf: too many arguments")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    template <typename T>
    class ThreadWithParam : public ThreadWithParamBase {
     public:
      typedef void (*UserThreadFunc)(T);
    
      ThreadWithParam(
          UserThreadFunc func, T param, Notification* thread_can_start)
          : func_(func),
            param_(param),
            thread_can_start_(thread_can_start),
            finished_(false) {
        ThreadWithParamBase* const base = this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    template <typename T>
    class ThreadWithParam : public ThreadWithParamBase {
     public:
      typedef void (*UserThreadFunc)(T);
    
      ThreadWithParam(
          UserThreadFunc func, T param, Notification* thread_can_start)
          : func_(func),
            param_(param),
            thread_can_start_(thread_can_start),
            finished_(false) {
        ThreadWithParamBase* const base = this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	data    []byte
    	lengths goobj.FuncInfoLengths
    }
    
    func (fi *FuncInfo) Valid() bool { return fi.r != nil }
    
    func (fi *FuncInfo) Args() int {
    	return int((*goobj.FuncInfo)(nil).ReadArgs(fi.data))
    }
    
    func (fi *FuncInfo) Locals() int {
    	return int((*goobj.FuncInfo)(nil).ReadLocals(fi.data))
    }
    
    func (fi *FuncInfo) FuncID() abi.FuncID {
    	return (*goobj.FuncInfo)(nil).ReadFuncID(fi.data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top