Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 248 for more (0.03 sec)

  1. tensorflow/cc/experimental/libtf/object.h

    #include "absl/strings/str_cat.h"
    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    #include "tensorflow/cc/experimental/libtf/value.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    
    namespace tf {
    namespace libtf {
    
    using TaggedValue = impl::TaggedValue;
    class Handle;
    
    // Necessary forward declare.
    template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.h

    // `base_loc` is used for error reporting and debug info.
    // If ordered_output_arrays is not empty, then the imported mlir function will
    // only return nodes in ordered_output_arrays in the same order. Returns nullptr
    // on failure, and more specific errors will be emitted via the context.
    // If `use_external_constant` is true, it will create `tfl.external_const`
    // instead of `tfl.const`.
    // If `experimental_prune_unreachable_nodes_unconditionally` is true, nodes that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/c/kernels.h

    // PlatformDeviceId if a mapping between between TfDeviceId and PlatformDeviceId
    // is set; otherwise returns the id in the device name. Please refer to
    // tensorflow/tsl/framework/device_id.h for more details.
    // For mobile or slim build, returns the id in the device name.
    TF_CAPI_EXPORT extern int TF_GetDeviceId(TF_OpKernelContext* ctx);
    
    // Returns the Device Name of the device that the context possesses.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    // converting them to NHWC formats along with extra optimizations such as
    // constant folding the transpose->convolution pattern. This is useful when
    // downstream pipeline (e.g. XLA) is more optimized when accepting NHWC formats.
    void AddProcessNchwTensorPasses(OpPassManager& pm);
    
    // Registers quantization pass pipelines. This is only required when running
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/abstract_operation.h

    #include "tensorflow/c/tensor_interface.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // Abstract interface to an operation.
    // This interface allows building and executing an operation in either
    // tracing or immediate execution mode.
    class AbstractOperation {
     protected:
      enum AbstractOperationKind {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 14 16:20:41 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          // TODO(b/172517537): check if other tensors should go through this
          // check too.
          op.emitError() << "Input tensor [" << input_index
                         << "] is a state tensor, but has more than one use.";
          return failure();
        }
        auto stats = mlir::dyn_cast<DenseFPElementsAttr>(stats_op.getLayerStats());
        if (!stats || stats.getNumElements() != 2) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/constant.h

    #include "tensorflow/c/eager/immediate_execution_context.h"
    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    #include "tensorflow/c/experimental/saved_model/core/revived_types/tensorhandle_convertible.h"
    #include "tensorflow/c/tensor_interface.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    
    namespace tensorflow {
    
    // This class corresponds to python's tf.constant, which is effectively a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    };
    
    // Helper data structure for output parameters to `ExtractSubgraphToFunc`.
    // `ExtractSubgraphToFunc` adds exactly two "new" `Operations`, a FuncOp and
    // a CallOp. Pass these back to the caller for setting more specific attributes
    // after graph mutation has taken place.
    struct OpsAdded {
      mlir::func::FuncOp func_op;
      mlir::func::CallOp call_op;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compiler.h

    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/client/local_client.h"
    #include "tensorflow/core/framework/metrics.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/lib/core/threadpool.h"
    #include "tensorflow/core/platform/mutex.h"
    #include "tensorflow/core/platform/thread_annotations.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/variable.h

    #include "tensorflow/c/experimental/saved_model/core/revived_types/tensorhandle_convertible.h"
    #include "tensorflow/core/common_runtime/eager/context.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top