Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for ThenChange (0.13 sec)

  1. tensorflow/compiler/jit/xla_activity.proto

        SLOW_IMAGE_RESIZE_DIMENSIONS = 4;
        MEGAMORPHIC_FUNCTION = 5;
      }
    
      Warning warning = 1;
    
      // Information such as which node was the problem.
      string debug_information = 2;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_activity_listener.h

    // this should match all of the values in the XlaOptimizationRemark proto.
    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information);
    
    // LINT.ThenChange(//tensorflow/compiler/jit/xla_activity.proto)
    
    // Various components of the system can subclass XlaActivityListener to
    // notifications on auto-clustering and JIT compilation events.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.h

        const absl::flat_hash_map<std::string, tensorflow::SignatureDef>&
            signature_def_map,
        const tensorflow::quantization::PyFunctionLibrary& py_function_library);
    // LINT.ThenChange(../python/pywrap_quantization.cc:weight_only_ptq)
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 12:18:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    // LINT.IfChange
    enum Padding : byte { SAME, VALID }
    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td)
    
    // LINT.IfChange
    enum ActivationFunctionType : byte {
      NONE = 0,
      RELU = 1,
      RELU_N1_TO_1 = 2,
      RELU6 = 3,
      TANH = 4,
      SIGN_BIT = 5,
    }
    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td)
    
    table Conv2DOptions {
      padding:Padding;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. tensorflow/c/tf_status.h

    #define TF_OUT_OF_RANGE TSL_OUT_OF_RANGE
    #define TF_UNIMPLEMENTED TSL_UNIMPLEMENTED
    #define TF_INTERNAL TSL_INTERNAL
    #define TF_UNAVAILABLE TSL_UNAVAILABLE
    #define TF_DATA_LOSS TSL_DATA_LOSS
    // LINT.ThenChange(//tensorflow/python/py_exception_registry_wrapper.cc)
    
    // --------------------------------------------------------------------------
    
    // Return a new status object.
    TF_CAPI_EXPORT extern TF_Status* TF_NewStatus(void);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.h

        const absl::flat_hash_map<std::string, tensorflow::SignatureDef>&
            signature_def_map,
        const tensorflow::quantization::PyFunctionLibrary& py_function_library);
    // LINT.ThenChange(../python/pywrap_quantization.cc:static_range_ptq)
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

    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;
    constexpr size_t TF_WRITABLE_FILE_OPS_SIZE = sizeof(TF_WritableFileOps);
    // LINT.ThenChange()
    
    // LINT.IfChange(read_only_memory_region_ops_version)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

          exported_model_serialized: bytes,
          src_saved_model_path: str,
          tags: set[str],
          serialized_signature_def_map: dict[str, bytes],
      ) -> Optional[bool]:
        # LINT.ThenChange(py_function_lib.h:save_exported_model)
        """Saves `ExportedModel` to `dst_saved_model_path` as a SavedModel.
    
        Args:
          dst_saved_model_path: Destination path to save the exported model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

                                            caller_parsed_device);
        return StringAttr::get(
            context, DeviceNameUtils::ParsedNameToString(ndef_parsed_device));
      };
      // LINT.ThenChange(../../../../core/common_runtime/inline_function_utils.cc)
    
      for (Block &block : inlinedBlocks) {
        block.walk([&](Operation *op) {
          if (op->getDialect() == call->getDialect())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

              TF::Relu6Op::getOperationName().str(),
              TF::ReluOp::getOperationName().str(),
              // go/keep-sorted end
              // clang-format on
          });
      return *default_op_list;
    }
    // LINT.ThenChange(Google-internal path)
    
    // Checks if the operation can be fused with bias.
    inline bool IsFusibleWithBiasOp(Operation *op) {
      return llvm::isa<
          // clang-format off
          TF::MatMulOp,
          TF::Conv2DOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top