Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 330 for constexpr (0.12 sec)

  1. tensorflow/compiler/jit/xla_compile_util.h

    #include <string>
    
    #include "tensorflow/compiler/tf2xla/xla_argument.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // The number of compiler threads to use for asynchronous device compilation.
    inline constexpr int64_t kNumAsyncDeviceCompilerThreads = 10;
    
    enum class DeviceCompileMode {
      kLazy,
      kStrict,
      kAsync,
    };
    
    enum class DeviceCompileState {
      kUncompiled,
      kCompiling,
      kCompiled,
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.h

    // The Control type is a token-like value that models control dependencies
    class ControlType : public Type::TypeBase<ControlType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr StringLiteral name = "tfl.control";
    };
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.h.inc"
    
    }  // end namespace TFL
    }  // end namespace mlir
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

    namespace tensorflow {
    namespace internal {
    namespace {
    
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tflite::optimize::ReducedPrecisionSupport;
    
    // Op def string for TFLite_Detection_PostProcess Op.
    constexpr mlir::StringRef kDetectionPostProcessOp =
        "name: 'TFLite_Detection_PostProcess' input_arg: { name: "
        "'raw_outputs/box_encodings' type: DT_FLOAT } input_arg: { name: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    
    namespace mlir {
    namespace tf_executor {
    
    namespace {
    constexpr llvm::StringRef kNestedModule = "_tpu_v1_compat_outlined";
    constexpr llvm::StringRef kOutlinedFuncPrefix = "_tpu_v1_compat_outlined_func";
    
    #define GEN_PASS_DEF_TPUBRIDGEEXECUTORISLANDOUTLININGPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

    // LINT.IfChange(random_access_file_ops_version)
    constexpr int TF_RANDOM_ACCESS_FILE_OPS_API = 0;
    constexpr int TF_RANDOM_ACCESS_FILE_OPS_ABI = 0;
    constexpr size_t TF_RANDOM_ACCESS_FILE_OPS_SIZE =
        sizeof(TF_RandomAccessFileOps);
    // LINT.ThenChange()
    
    // LINT.IfChange(writable_file_ops_version)
    constexpr int TF_WRITABLE_FILE_OPS_API = 0;
    constexpr int TF_WRITABLE_FILE_OPS_ABI = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

    using ::tsl::protobuf::TextFormat;
    
    // Default version number for native serialization.
    constexpr int64_t kDefaultVersion = 9;
    // Default platform for XlaCallModuleOp.
    constexpr StringRef kPlatformCpu = "CPU";
    // Name of `tf.XlaCallModule`'s dictionary attribute for keeping the
    // deserialized stablehlo module's attributes.
    constexpr StringRef kStablehloModuleAttrsAttrName = "_stablehlo_module_attrs";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    
    namespace mlir {
    namespace TFTPU {
    
    namespace {
    
    constexpr char kDeviceAttr[] = "device";
    constexpr char kFuncDeviceAttr[] = "tf.device";
    constexpr char kDefaultShardingValue[] = "";
    constexpr char kMirroredVariableIndicesAttr[] = "_mirrored_variable_indices";
    
    std::string GetRandomStateVariableName() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

    namespace mlir {
    namespace quant {
    namespace {
    
    using ::mlir::tf_saved_model::GetInitializerFunction;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    constexpr StringRef kTfQuantSaveV2OpName = "tf_quant__save_save_v2";
    constexpr StringRef kTfQuantSaveReturnOpName = "tf_quant__save_return";
    
    // A pass that creates a new function that wraps the newly created SaveV2 op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

    using mlir::stablehlo::ConstantOp;
    using mlir::stablehlo::ConvertOp;
    using ::stablehlo::quantization::QuantizationComponentSpec;
    
    // Min/Max values used for creating ConstantOp.
    constexpr float kMaxFloat16Value = 65504.f;
    constexpr float kMinFloat16Value = -65504.f;
    
    class QuantizeWeightPass
        : public impl::QuantizeWeightPassBase<QuantizeWeightPass> {
     public:
      explicit QuantizeWeightPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

            AddUse(some_operation(rng), some_tensor(rng));
          }
        }
      };
    };
    
    TEST_F(RematSimulationTest, SimulationAgreesWithReality) {
      constexpr int kNumOperations = 128;
      constexpr int kNumTensors = 32;
      constexpr int kNumUses = kNumOperations * kNumTensors / 4;
    
      std::mt19937 rng;
      for (int i = 0; i < 1024; ++i) {
        RandomRemat remat(kNumOperations, kNumTensors, kNumUses, rng);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top