Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for func_call (0.1 sec)

  1. internal/s3select/sql/parser.go

    	JPathExpr     *JSONPath   `parser:"| @@"`
    	ListExpr      *ListExpr   `parser:"| @@"`
    	SubExpression *Expression `parser:"| \"(\" @@ \")\""`
    	// Include function expressions here.
    	FuncCall *FuncExpr `parser:"| @@"`
    }
    
    // FuncExpr represents a function call
    type FuncExpr struct {
    	SFunc     *SimpleArgFunc `parser:"  @@"`
    	Count     *CountFunc     `parser:"| @@"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      func.mutable_signature()->set_is_stateful(true);
      *flib_def.add_function() = std::move(func);
      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(flib_def));
      NodeDef call_node;
      call_node.set_name("fn_call");
      call_node.set_op("Stateful_func");
      Status status;
      Node* call = root.graph()->AddNode(call_node, &status);
      TF_ASSERT_OK(status);
    
      Output shape = Output(call, 0);
      Output reshape_input =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return host_compute_node;
    }
    
    // Resets "_device_ordinal" attr to placeholder value for related nodes
    // (XlaRecvAtHost nodes; XlaSendFromHost nodes; If/While/FuncCall nodes
    // containing XlaRecvAtHost/XlaSendFromHost).
    Status ResetDeviceOrdinalToPlaceholderValue(Graph* g) {
      AttrValue device_ordinal_value;
      device_ordinal_value.set_placeholder("_device_ordinal");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top