Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for mq_send (0.21 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_MQ_NOTIFY              = 515 // { int mq_notify(mqd_t mqdes, const struct sigevent *notification); }
    	SYS_MQ_SEND                = 516 // { int mq_send(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio); }
    	SYS_MQ_RECEIVE             = 517 // { ssize_t mq_receive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

                          ReportClusteringInfoPass);
    
    // The EncapsulateSubgraphs pass must run after the MarkForCompilationPass. We
    // also need to run it after the graph been rewritten to have _Send nodes added
    // for fetches. Before the _Send nodes are added, fetch nodes are identified by
    // name, and encapsulation might remove that node from the graph.
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 50,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_s390x.go

    const (
    	// see linux/net.h
    	_SOCKET      = 1
    	_BIND        = 2
    	_CONNECT     = 3
    	_LISTEN      = 4
    	_ACCEPT      = 5
    	_GETSOCKNAME = 6
    	_GETPEERNAME = 7
    	_SOCKETPAIR  = 8
    	_SEND        = 9
    	_RECV        = 10
    	_SENDTO      = 11
    	_RECVFROM    = 12
    	_SHUTDOWN    = 13
    	_SETSOCKOPT  = 14
    	_GETSOCKOPT  = 15
    	_SENDMSG     = 16
    	_RECVMSG     = 17
    	_ACCEPT4     = 18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    const (
    	// see linux/net.h
    	_SOCKET      = 1
    	_BIND        = 2
    	_CONNECT     = 3
    	_LISTEN      = 4
    	_ACCEPT      = 5
    	_GETSOCKNAME = 6
    	_GETPEERNAME = 7
    	_SOCKETPAIR  = 8
    	_SEND        = 9
    	_RECV        = 10
    	_SENDTO      = 11
    	_RECVFROM    = 12
    	_SHUTDOWN    = 13
    	_SETSOCKOPT  = 14
    	_GETSOCKOPT  = 15
    	_SENDMSG     = 16
    	_RECVMSG     = 17
    	_ACCEPT4     = 18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux_386.go

    const (
    	// see linux/net.h
    	_SOCKET      = 1
    	_BIND        = 2
    	_CONNECT     = 3
    	_LISTEN      = 4
    	_ACCEPT      = 5
    	_GETSOCKNAME = 6
    	_GETPEERNAME = 7
    	_SOCKETPAIR  = 8
    	_SEND        = 9
    	_RECV        = 10
    	_SENDTO      = 11
    	_RECVFROM    = 12
    	_SHUTDOWN    = 13
    	_SETSOCKOPT  = 14
    	_GETSOCKOPT  = 15
    	_SENDMSG     = 16
    	_RECVMSG     = 17
    	_ACCEPT4     = 18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go

    	MSG_NOSIGNAL                            = 0x80000
    	MSG_OOB                                 = 0x1
    	MSG_PEEK                                = 0x2
    	MSG_RCVMORE                             = 0x4000
    	MSG_SEND                                = 0x1000
    	MSG_TRUNC                               = 0x10
    	MSG_WAITALL                             = 0x40
    	MSG_WAITSTREAM                          = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	MSG_NOSIGNAL                            = 0x80000
    	MSG_OOB                                 = 0x1
    	MSG_PEEK                                = 0x2
    	MSG_RCVMORE                             = 0x4000
    	MSG_SEND                                = 0x1000
    	MSG_TRUNC                               = 0x10
    	MSG_WAITALL                             = 0x40
    	MSG_WAITSTREAM                          = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

                                            std::vector<bool>* should_revisit) {
      // In addition to being alive or dead based on the inputs, a _Recv can also
      // acquire a dead signal from a _Send.
      std::vector<Predicate*> input_preds;
      TF_RETURN_IF_ERROR(GetInputPreds(n, EdgeKind::kDataAndControl, &input_preds));
      Predicate* signal_is_alive;
      TF_RETURN_IF_ERROR(predicate_factory_.MakeSymbolPredicate(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const std::vector<Node*>& ret_nodes,
        const std::vector<DataType>& send_from_host_dtypes, Node* key_placeholder) {
      NodeDefBuilder send_from_host_builder(
          absl::StrCat("outside_compilation_", oc_cluster_name, "_send"),
          "_XlaSendFromHost");
      NodeDef send_from_host_def;
      send_from_host_builder.Attr("Tinputs", send_from_host_dtypes);
      // The correct device_ordinal will be inserted during replication in a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                                new_func_name, "_", oc_cluster);
      string name = absl::StrCat("outside_compilation_", cluster, "_",
                                 new_func_name, "_", oc_cluster, "_send");
      NodeBuilder node_builder(opts.WithName(name).GetNameForOp("_XlaSendFromHost"),
                               "_XlaSendFromHost", opts.op_registry());
      node_builder.Input(inputs);
      node_builder.Input(std::move(key_input));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top