Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,325 for strtab (0.12 sec)

  1. guava/src/com/google/common/collect/Streams.java

      }
    
      /**
       * Returns a {@link Stream} containing the elements of the first stream, followed by the elements
       * of the second stream, and so on.
       *
       * <p>This is equivalent to {@code Stream.of(streams).flatMap(stream -> stream)}, but the returned
       * stream may perform better.
       *
       * @see Stream#concat(Stream, Stream)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/fingerprinting.cc

      {
        // Local scope guarantees coded stream will be trimmed (ensures
        // serialization determinism).
        // Unfortunately the saving process itself isn't deterministic, so the
        // checksum may still change since the saved_model proto may be different.
        StringOutputStream stream(&saved_model_serialized);
        CodedOutputStream output(&stream);
        output.SetSerializationDeterministic(true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K 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/compiler/mlir/lite/debug/debug.cc

        if (RE2::FullMatch(pass->getName(), *dump_pass_re_)) {
          Dump(absl::StrCat(absl::string_view(pass->getName()), "_before"), op,
               absl::StrCat(absl::Hex(pass_counter_, absl::kZeroPad8)));
        }
      }
    
      void runAfterPass(mlir::Pass* pass, mlir::Operation* op) override {
        if (RE2::FullMatch(pass->getName(), *dump_pass_re_)) {
          Dump(absl::StrCat(absl::string_view(pass->getName()), "_after"), op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/get_compiler_ir.cc

          DeviceCompiler<xla::LocalExecutable, xla::LocalClient>;
    
      se::Stream* stream = nullptr;
      if (const DeviceBase::AcceleratorDeviceInfo* accelerator_device_info =
              dev->tensorflow_accelerator_device_info()) {
        stream = accelerator_device_info->stream;
      }
      TF_RETURN_IF_ERROR(
          ValidateGetCompilerIrTfrtTpu(dev->device_type(), stream, stage));
    
      NameAttrList function;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_cluster_formation.cc

        FuncOp func, SymbolTableCollection &symbol_table_collection,
        SymbolTable &symtab) {
      auto has_no_compile_device_type = [](SymbolUserOpInterface op) {
        return !op->hasAttr(mlir::TF::kCompileDeviceTypeAttr);
      };
    
      mlir::OpBuilder builder(func.getContext());
      auto noinline_attr_name = absl::StrCat("tf.", tensorflow::kNoInlineAttr);
      llvm::SmallVector<SymbolUserOpInterface> noinline_pcall_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/node_matchers.cc

        std::vector<string> predicates;
    
        if (name) {
          predicates.push_back(absl::StrCat("name: ", *name));
        }
    
        if (op) {
          predicates.push_back(absl::StrCat("op: ", *op));
        }
    
        if (assigned_device) {
          predicates.push_back(absl::StrCat("assigned device: ", *assigned_device));
        }
    
        bool printed_something = !predicates.empty();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  10. 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)
Back to top