Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for compilation_status (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      EXPECT_EQ(compilation_status.Delta(kMlirCombinedOldSuccess), 1);
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedOldFailure), 0);
      // Old bridge should never be called at all.
      EXPECT_EQ(compilation_status.Delta(kOldBridgeMlirFilteredFailure), 0);
      EXPECT_EQ(compilation_status.Delta(kOldBridgeWithFallbackModeFailure), 0);
      EXPECT_EQ(compilation_status.Delta(kOldBridgeMlirFilteredSuccess), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

                                    /*shape_determination_fns=*/{},
                                    &compilation_result, custom_legalization_passes)
                    .status();
      if (!compilation_status.ok()) {
        LOG(ERROR) << "TF/XLA compilation failed: " << compilation_status;
        return mlir::failure();
      }
    
      return PrintHloModuleText(compilation_result, output);
    }
    
    static mlir::LogicalResult MlirTfGraphToHloTextTranslateFunction(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      } else {
        metadata.SerializeToString(&txt_metadata);
      }
    
      auto compile_op = builder->create<TF::_TPUCompileMlirOp>(
          cluster_func.getLoc(),
          /*compilation_status=*/compilation_status_type, /*program=*/
          llvm::SmallVector<Type, 8>(num_cores_per_replica, program_type),
          compile_op_operands, txt_module, txt_metadata);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top