Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ForEachArgConsumedByFallback (0.43 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ir/tfrt_fallback_util_test.cc

      auto module =
          mlir::parseSourceFile<mlir::ModuleOp>(saved_model_mlir_path, &context);
      ASSERT_TRUE(module);
    
      std::vector<std::pair<std::string, int>> func_and_index;
      ForEachArgConsumedByFallback(
          module.get(),
          [&func_and_index](llvm::StringRef func_name, int arg_index) {
            func_and_index.push_back({func_name.str(), arg_index});
          });
    
      ASSERT_EQ(func_and_index.size(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top