Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for more (0.03 sec)

  1. tensorflow/c/python_api.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_PYTHON_API_H_
    #define TENSORFLOW_C_PYTHON_API_H_
    
    #include <string>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/core/framework/full_type.pb.h"
    
    // These functions can be removed without notice. They exist to facilitate some
    // refactoring of graph construction code in the Python API.
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/embedded_protocol_buffers.h

    #ifndef TENSORFLOW_COMPILER_AOT_EMBEDDED_PROTOCOL_BUFFERS_H_
    #define TENSORFLOW_COMPILER_AOT_EMBEDDED_PROTOCOL_BUFFERS_H_
    
    #include "absl/types/span.h"
    #include "xla/statusor.h"
    #include "tensorflow/core/platform/protobuf.h"
    
    namespace tensorflow {
    namespace tfcompile {
    using absl::StatusOr;
    
    // Represents a set of protocol buffers embedded into an object file and
    // describes how to access them at runtime.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_cache.h

          entry->compilation_status = *compilation_status;
        }
        if (compilation_result.has_value()) {
          entry->compilation_result = std::move(*compilation_result);
        }
        if (executable.has_value()) {
          entry->executable = std::move(*executable);
        }
      }
    
      VLOG(4) << "Added/updated cache entry: key=" << key.HumanString()
              << ", entry=" << entry->DebugString();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    namespace tflite {
    
    // Convert a model represented in `input_contents`. `model_flags_proto`
    // describes model parameters. `flags_proto` describes conversion
    // parameters (see relevant .protos for more information). Returns a string
    // representing the contents of the converted model. When extended_return
    // flag is set to true returns a dictionary that contains string representation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem.h

          : filesystem_(std::move(filesystem)),
            ops_(std::move(filesystem_ops)),
            random_access_file_ops_(std::move(random_access_file_ops)),
            writable_file_ops_(std::move(writable_file_ops)),
            read_only_memory_region_ops_(std::move(read_only_memory_region_ops)),
            plugin_memory_allocate_(std::move(plugin_memory_allocate)),
            plugin_memory_free_(std::move(plugin_memory_free)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/pjrt_tensor_buffer.h

    #define TENSORFLOW_COMPILER_JIT_PJRT_TENSOR_BUFFER_H_
    
    #include <memory>
    #include <utility>
    
    #include "xla/pjrt/pjrt_client.h"
    #include "tensorflow/core/framework/allocation_description.pb.h"
    #include "tensorflow/core/framework/tensor.h"
    
    namespace tensorflow {
    
    // PjRtTensorBuffer is derived from TensorBuffer, which holds a device memory
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    // opinions taken by that codebase (vs providing any amount of genericity).
    //
    // Specifically, it combines the following concerns, each of which would be
    // independent variables in a more generic setup:
    //   - numBits and isSigned imply storage data type (uint8, int8, int16)
    //   - numBits < 8 is promoted to uint8 or int8
    //   - "narrow_range" narrows the lower bound of the storage type's range by
    //     1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/metrics.h

    #include <string>
    #include <utility>
    
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/lib/monitoring/gauge.h"
    #include "tensorflow/core/lib/monitoring/sampler.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    
    namespace tensorflow {
    namespace metrics {
    
    const char kFingerprintFound[] = "FOUND";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/test_util.h

    #include "tensorflow/core/common_runtime/device_mgr.h"
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    #include "tensorflow/core/common_runtime/process_function_library_runtime.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/partial_tensor_shape.h"
    #include "tensorflow/core/graph/graph.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/util.h

    #include <set>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_model.pb.h"
    
    namespace tensorflow {
    namespace saved_model {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 31 23:00:51 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top