Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for has_func (0.21 sec)

  1. src/cmd/compile/internal/walk/expr.go

    		return walkCall(n, init)
    
    	case ir.OAS, ir.OASOP:
    		return walkAssign(init, n)
    
    	case ir.OAS2:
    		n := n.(*ir.AssignListStmt)
    		return walkAssignList(init, n)
    
    	// a,b,... = fn()
    	case ir.OAS2FUNC:
    		n := n.(*ir.AssignListStmt)
    		return walkAssignFunc(init, n)
    
    	// x, y = <-c
    	// order.stmt made sure x is addressable or blank.
    	case ir.OAS2RECV:
    		n := n.(*ir.AssignListStmt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    func.func @testXlaHostComputeMlir(%arg0: tensor<2xf32>) -> () {
      // expected-error @+1 {{'host_mlir_module' does not contain 'host_func' function}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    using mlir::Value;
    using mlir::ValueRange;
    using mlir::WalkResult;
    using mlir::func::FuncOp;
    using mlir::func::ReturnOp;
    
    constexpr char kDeviceAttr[] = "device";
    constexpr char kHostFunctionAttr[] = "host_func";
    constexpr char kXlaMapOutsideCompilationAttr[] = "_xla_map_outside_compilation";
    constexpr char kXlaOutsideCompilationAttr[] = "_xla_outside_compilation";
    
    #define GEN_PASS_DEF_EXTRACTOUTSIDECOMPILATIONPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        // CHECK:          "tf_device.cluster"
        // CHECK:            %[[HOST_OUTPUT:[0-9]*]] = "tf._XlaHostComputeMlir"()
        // CHECK-SAME:       host_mlir_module = "module  {\0A  func.func @host_func() -> tensor<?xi32> {\0A    %0 = \22tf.B\22() {_xla_outside_compilation = \22cluster1\22} : () -> tensor<?xi32> loc(#loc1)\0A    return %0 : tensor<?xi32> loc(#loc1)\0A  }
        // CHECK:            "tf.C"(%[[HOST_OUTPUT]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"WithTimeout", Func, 7},
    		{"WithTimeoutCause", Func, 21},
    		{"WithValue", Func, 7},
    		{"WithoutCancel", Func, 21},
    	},
    	"crypto": {
    		{"(Hash).Available", Method, 0},
    		{"(Hash).HashFunc", Method, 4},
    		{"(Hash).New", Method, 0},
    		{"(Hash).Size", Method, 0},
    		{"(Hash).String", Method, 15},
    		{"BLAKE2b_256", Const, 9},
    		{"BLAKE2b_384", Const, 9},
    		{"BLAKE2b_512", Const, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK-SAME: tensor<2xf32>
        %0 = "tf._XlaHostComputeMlir"(%arg0) {recv_key = "host_compute_channel_recv", send_key = "host_compute_channel_send", tpu_core = 0, host_mlir_module = "module  {\0A  func.func @host_func(%arg0: tensor<*xf32>) -> tensor<*xf32> {\0A    %0 = \22tf.Identity\22(%arg0) {_xla_outside_compilation = \22cluster1\22} : (tensor<*xf32>) -> tensor<*xf32> \0A    return %0 : tensor<*xf32> \0A  } \0A} \0A"} : (tensor<2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		}
    		s.assign(n.Lhs[0], res, deref, 0)
    		s.assign(n.Lhs[1], resok, false, 0)
    		return
    
    	case ir.OAS2FUNC:
    		// We come here only when it is an intrinsic call returning two values.
    		n := n.(*ir.AssignListStmt)
    		call := n.Rhs[0].(*ir.CallExpr)
    		if !ir.IsIntrinsicCall(call) {
    			s.Fatalf("non-intrinsic AS2FUNC not expanded %v", call)
    		}
    		v := s.intrinsicCall(call)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg crypto/ecdsa, method (*PublicKey) ECDH() (*ecdh.PublicKey, error) #56088
    pkg crypto/ed25519, func VerifyWithOptions(PublicKey, []uint8, []uint8, *Options) error #31804
    pkg crypto/ed25519, method (*Options) HashFunc() crypto.Hash #31804
    pkg crypto/ed25519, type Options struct #31804
    pkg crypto/ed25519, type Options struct, Context string #31804
    pkg crypto/ed25519, type Options struct, Hash crypto.Hash #31804
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top