Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for _xla (0.09 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/test_matchers_test.cc

    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "xla/client/xla_computation.h"
    #include "xla/service/hlo.pb.h"
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tsl/platform/statusor.h"
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/convert_xla_call_module_op_to_bfloat16.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -tf-xla-call-module-serialization -stablehlo-convert-xla-call-module-op-to-bfloat16 -tf-xla-call-module-deserialization | FileCheck %s
    
    // ConvertXlaCallModuleOpToBfloat16Pass works on XlaCallModuleOps with
    // serialized modules. Which makes verification difficult. Therefore we add
    // (de)serialization passes so that the input and output are deserializated
    // StableHLO functions.
    
    // CHECK-LABEL: module
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    #include "tensorflow/c/experimental/stream_executor/stream_executor.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "xla/stream_executor/executor_cache.h"
    #include "xla/stream_executor/platform.h"
    #include "xla/stream_executor/stream_common.h"
    #include "xla/stream_executor/stream_executor.h"
    #include "tsl/platform/statusor.h"
    
    namespace stream_executor {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "xla/mlir_hlo/mhlo/IR/register.h"
    #include "xla/mlir_hlo/mhlo/transforms/passes.h"
    #include "tensorflow/core/ir/types/dialect.h"
    
    int main(int argc, char** argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
      mlir::registerAllPasses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

    #include "tensorflow/compiler/jit/tests/device_compiler_test_helper.h"
    
    #include <string>
    
    #include "absl/strings/match.h"
    #include "tensorflow/compiler/jit/xla_compilation_cache.pb.h"
    #include "xla/service/hlo.pb.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/public/session.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/register_common_dialects.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/mlprogram_util.h"
    #include "tensorflow/compiler/mlir/tools/kernel_gen/ir/tf_framework_ops.h"
    #include "xla/mlir/framework/ir/xla_framework.h"
    #include "xla/mlir_hlo/mhlo/IR/register.h"
    
    namespace mlir {
    
    void RegisterCommonToolingDialects(mlir::DialectRegistry& registry) {
      mlir::RegisterAllTensorFlowDialects(registry);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:45:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir_test.cc

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "xla/shape.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status_internal.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_TF_STATUS_INTERNAL_H_
    #define TENSORFLOW_C_TF_STATUS_INTERNAL_H_
    
    #include "xla/tsl/c/tsl_status_internal.h"
    
    typedef struct TSL_Status TF_Status;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 885 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

    enum OpSet {
      OP_SET_UNSPECIFIED = 0;  // go/do-include-enum-unspecified
      // Uses TF ops that mimic quantization behavior. Used when the corresponding
      // integer op is not yet present.
      TF = 1;
      // Uses TF XLA ops
      XLA = 2;
      // Uses TF Uniform Quantized ops
      UNIFORM_QUANTIZED = 3;
      // Uses the StableHLO Quantizer. StableHLO Quantizer will be available as
      // an option in the TF Quantizer in StableHLO Quantizer v1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf_mlir_opt_main.cc

    #include "tensorflow/compiler/mlir/tosa/tf_tfl_passes.h"
    #include "tensorflow/compiler/mlir/tosa/tfl_passes.h"
    #include "tensorflow/compiler/mlir/tosa/transforms/passes.h"
    #include "xla/mlir/framework/transforms/passes.h"
    #include "xla/mlir_hlo/mhlo/transforms/passes.h"
    
    int main(int argc, char **argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
      mlir::registerAllPasses();
      mlir::registerTransformsPasses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top