Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for Implementation (0.17 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

     public:
      virtual ~DeathTestFactory() { }
      virtual bool Create(const char* statement, const RE* regex,
                          const char* file, int line, DeathTest** test) = 0;
    };
    
    // A concrete DeathTestFactory implementation for normal use.
    class DefaultDeathTestFactory : public DeathTestFactory {
     public:
      virtual bool Create(const char* statement, const RE* regex,
                          const char* file, int line, DeathTest** test);
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        mutable scoped_ptr<const T> value_;
      };  // class ValuesInIteratorRangeGenerator::Iterator
    
      // No implementation - assignment is unsupported.
      void operator=(const ValuesInIteratorRangeGenerator& other);
    
      const ContainerType container_;
    };  // class ValuesInIteratorRangeGenerator
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Stores a parameter value and later creates tests parameterized with that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.h

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    // This is the TF eager runtime implementation of SignatureDefFunction (separate
    // from the TFRT implementation). The user-facing API of SignatureDefFunctions
    // and their semantic differences from ConcreteFunction are described here:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/c/eager/immediate_execution_tensor_handle.h

    //
    // A TensorHandle is management class around a Tensor which may track additional
    // metadata and synchronization.
    //
    // This allows us to hide concrete implementations of TensorHandle from header
    // files. The interface lists the common functionality that must be provided by
    // any concrete implementation. However, in cases where the true concrete class
    // is needed a static_cast can be applied.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 10 21:56:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/grad_op_registry.h

    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/framework/scope.h"
    
    namespace tensorflow {
    namespace ops {
    
    /// GradFunc is the signature for all gradient functions in GradOpRegistry.
    /// Implementations should add operations to compute the gradient outputs of
    /// 'op' (returned in 'grad_outputs') using 'scope' and 'grad_inputs'.
    typedef Status (*GradFunc)(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:33:58 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

      // running calibration.
      absl::StatusOr<ModuleOp> ImportCalibratedSavedModel(
          absl::string_view calibrated_saved_model_path);
    
      absl::Nonnull<MLIRContext*> ctx_;
    
      // Contains function implementations from the python layer. Should be injected
      // from the python level using pybind11.
      absl::Nonnull<const tensorflow::quantization::PyFunctionLibrary*>
          py_function_lib_;
    
      // Path to the pre-calibrated SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/c/kernels.h

    #endif
    
    typedef struct TF_Tensor TF_Tensor;
    
    // --------------------------------------------------------------------------
    // C API for TensorFlow Kernels.
    //
    // This API allows developers to register custom kernel implementations for
    // TensorFlow.
    //
    // See c_api.h header comments for a discussion about API conventions.
    //
    // Users wishing to extend TensorFlow with new kernels will call
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      //
      // Unlike wcscasecmp(), this function can handle NULL argument(s).
      // A NULL C string is considered different to any non-NULL wide C string,
      // including the empty string.
      // NB: The implementations on different platforms slightly differ.
      // On windows, this method uses _wcsicmp which compares according to LC_CTYPE
      // environment variable. On GNU platform this method uses wcscasecmp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // for more examples.
    //
    // In the future, we plan to publish the API for defining new parameter
    // generators. But for now this interface remains part of the internal
    // implementation and is subject to change.
    //
    //
    // A parameterized test fixture must be derived from testing::Test and from
    // testing::WithParamInterface<T>, where T is the type of the parameter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_layout_helper.h

    Type ShuffleRankedTensorType(Type type, ArrayRef<int64_t> permutation);
    
    bool AreCancellablePermutations(DenseIntElementsAttr perm0,
                                    DenseIntElementsAttr perm1);
    
    // Default implementation of `LayoutSensitiveInterface::UpdateDataFormat` for
    // layout sensitive operations that do not have any additional layout dependent
    // attributes besides `data_format` string.
    template <typename Op>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top