Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kNotDynamicFunction (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

        "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter",
        "Counts how many functions are dynamic", "has_dynamism");
    
    constexpr char kNotDynamicFunctionName[] = "kNotDynamicFunction";
    constexpr char kDynamicFunctionName[] = "kDynamicFunction";
    
    class InputMetricsLoweringPass
        : public impl::InputLoweringMetricsPassBase<InputMetricsLoweringPass> {
     public:
      void runOnOperation() override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

    namespace {
    
    using ::mlir::LogicalResult;
    using ::mlir::ModuleOp;
    using ::mlir::mhlo::test::GetMlirModuleFromString;
    using ::tensorflow::monitoring::testing::CellReader;
    
    constexpr char kNotDynamicFunctionName[] = "kNotDynamicFunction";
    constexpr char kDynamicFunctionName[] = "kDynamicFunction";
    static constexpr char kDynamismOpCounterStreamzName[] =
        "/tensorflow/core/tf2xla/api/v2/dynamism_op_counter";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo_test.cc

    TEST(LegalizeWithCombinedBridge, RecordsDynamicOps) {
      static constexpr char kDynamismFunctionCounterStreamzName[] =
          "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter";
      constexpr char kNotDynamicFunctionName[] = "kNotDynamicFunction";
      CellReader<int64_t> dynamic_function_op_count(
          kDynamismFunctionCounterStreamzName);
    
      auto result = CompileMlirModule(kMlirModuleStr);
    
      ASSERT_TRUE(result.ok());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top