Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TfSavedModelTest (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_test.cc

    using ::testing::NotNull;
    using ::testing::SizeIs;
    
    // Fixture for testing TfSavedModel functionalities. Initializes a
    // `MLIRContext` by loading the `tf_saved_model` dialect.
    class TfSavedModelTest : public ::testing::Test {
     protected:
      TfSavedModelTest() : ctx_() {
        ctx_.loadDialect<TensorFlowSavedModelDialect, func::FuncDialect>();
      }
    
      MLIRContext ctx_;
    };
    
    // Parses `module_op_str` and returns the resulting `ModuleOp`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 05:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top