Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateEmbeddedProtocolBuffers (0.27 sec)

  1. tensorflow/compiler/aot/embedded_protocol_buffers.h

    // of all the protocol buffers are embedded into a single .o file whose content
    // is stored in the object_file_data field in the returned
    // EmbeddedProtocolBuffers instance.
    absl::StatusOr<EmbeddedProtocolBuffers> CreateEmbeddedProtocolBuffers(
        absl::string_view target_triple,
        absl::Span<const ProtobufToEmbed> protobufs_to_embed);
    
    }  // namespace tfcompile
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/embedded_protocol_buffers.cc

      return absl::WrapUnique(target->createTargetMachine(
          normalized_triple, /*CPU=*/"",
          /*Features=*/"", llvm::TargetOptions(), std::nullopt));
    }
    
    absl::StatusOr<EmbeddedProtocolBuffers> CreateEmbeddedProtocolBuffers(
        absl::string_view target_triple,
        absl::Span<const ProtobufToEmbed> protobufs_to_embed) {
      TF_ASSIGN_OR_RETURN(std::unique_ptr<llvm::TargetMachine> target_machine,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:48:41 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen.cc

          "::xla::HloProfilePrinterData",
          compile_result.aot->hlo_profile_printer_data()};
    
      TF_ASSIGN_OR_RETURN(
          EmbeddedProtocolBuffers embedded_protobufs,
          CreateEmbeddedProtocolBuffers(
              opts.target_triple,
              {program_shape_protobuf, hlo_profile_printer_data_protobuf}));
    
      metadata_result->program_shape_access_shim =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top