Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 386 for strtab (0.21 sec)

  1. internal/grid/stream.go

    	// If the request context is canceled, the stream will no longer process requests.
    	// Requests sent cannot be used any further by the called.
    	Requests chan<- []byte
    
    	muxID uint64
    	ctx   context.Context
    }
    
    // Send a payload to the remote server.
    func (s *Stream) Send(b []byte) error {
    	if s.Requests == nil {
    		return errors.New("stream does not accept requests")
    	}
    	select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    }
    
    // moduledata records information about the layout of the executable
    // image. It is written by the linker. Any changes here must be
    // matched changes to the code in cmd/link/internal/ld/symtab.go:symtab.
    // moduledata is stored in statically allocated non-pointer memory;
    // none of the pointers here are visible to the garbage collector.
    type moduledata struct {
    	sys.NotInHeap // Only in static data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_tpu_device.cc

        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
        // destination stream, but when this function returns, the send requests
        // might not be enqueued to the stream yet, we put it on destination stream.
        TensorReference input_reference(*input);
        std::move(return_substream).release();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

    se::Stream* GetStream(OpKernelContext* ctx) {
      return ctx->op_device_context() ? ctx->op_device_context()->stream()
                                      : nullptr;
    }
    
    XlaComputationLaunchContext GetLaunchContext(
        const XlaPlatformInfo& platform_info, OpKernelContext* ctx,
        xla::LocalClient* client, se::DeviceMemoryAllocator* allocator) {
      se::Stream* stream = GetStream(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device.cc

                                           bool* stream_was_changed) {
      if (!(*stream) || !(*stream)->ok()) {
        xla::StreamPool::Ptr ptr;
        TF_ASSIGN_OR_RETURN(ptr, backend->BorrowStream(device_ordinal_));
        *stream = std::shared_ptr<se::Stream>(std::move(ptr));
        VLOG(1) << "XlaDevice " << this << " new " << name
                << " stream=" << (*stream);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.cc

                                               &HostCallbackTrampoline, ctx);
      }
      void DeallocateStream(Stream* stream) override {
        static_cast<CStream*>(stream)->Destroy();
      }
      absl::Status BlockHostForEvent(Stream* stream, Event* event) {
        OwnedTFStatus c_status(TF_NewStatus());
        SP_Event event_handle = static_cast<CEvent*>(event)->Handle();
        stream_executor_->block_host_for_event(&device_, event_handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. tensorflow/c/kernels.cc

        status->status = absl::FailedPreconditionError(
            "Accessing device stream is not supported for a CPU device.");
        return nullptr;
      } else if (!cc_ctx->op_device_context()->IsPluggableDevice()) {
        status->status = absl::FailedPreconditionError(
            "Accessing device stream is only supported for pluggable devices.");
        return nullptr;
      } else {  // Is a PluggableDevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/clientinput/StdInStreamTest.groovy

                stream.received(bytes)
            }
    
            then:
            1 * dispatch.onOutput({ it instanceof ReadStdInEvent }) >> { instant.requested }
        }
    
        def "read byte returns when stream is closed"() {
            def dispatch = Mock(OutputEventListener)
            def stream = new StdInStream(dispatch)
    
            when:
            async {
                start {
                    def b1 = stream.read()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      TF_ASSERT_OK(stream->WaitFor(event.get()));
      ASSERT_TRUE(wait_called);
    }
    
    TEST_F(StreamExecutorTest, MemcpyToHost) {
      se_.create_stream = [](const SP_Device* const device, SP_Stream* stream,
                             TF_Status* const status) -> void {
        *stream = new SP_Stream_st(14);
      };
      se_.destroy_stream = [](const SP_Device* const device,
                              SP_Stream stream) -> void { delete stream; };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

            Stream<? extends Element> annotatedTypes = getSupportedAnnotations().stream()
                .flatMap(annotation -> roundEnv.getElementsAnnotatedWith(annotation).stream())
                .flatMap(element -> findActualTypesToVisit(element).stream())
                .sorted(Comparator.comparing(AbstractInstrumentationProcessor::elementQualifiedName));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top