- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for MLIR (0.05 sec)
-
CODEOWNERS
/tensorflow/core/nccl/ @azaks2 @chsigg /tensorflow/python/autograph/ @mdanatg /tensorflow/python/debug @caisq /tensorflow/python/eager @rohan100jain /tensorflow/tools/docs/ @markdaoust /tensorflow/compiler/mlir/ @aminim /tensorflow/core/ir/ @aminim /tensorflow/core/transforms/ @aminim
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri May 27 21:02:49 UTC 2022 - 563 bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_internal.h
}; namespace tracing { // ============================================================================= // Implementation detail for the unified execution APIs for Eager and tracing // backends (graph/MLIR). // // This defines a set of abstract classes that are intended to provide the // functionality of the opaque C types exposed in the public APIs defined in the // `c_api_unified_experimental.h` header.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 5.2K bytes - Viewed (0) -
tensorflow/c/eager/gradients_test.cc
UnifiedCAPI, CppGradients, ::testing::Combine(::testing::Values("graphdef", "mlir"), /*tfrt*/ ::testing::Values(false), /*executing_eagerly*/ ::testing::Values(true, false))); #else INSTANTIATE_TEST_SUITE_P( UnifiedCAPI, CppGradients, ::testing::Combine(::testing::Values("graphdef", "mlir"), /*tfrt*/ ::testing::Values(false),
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 7K bytes - Viewed (0) -
tensorflow/c/eager/abstract_function.h
namespace tensorflow { class FunctionRecord; // A traced function: this hides the complexity of converting the serialized // representation between various supported formats e.g. FunctionDef and Mlir // function. class AbstractFunction : public core::RefCounted { protected: enum AbstractFunctionKind { kGraph, kMlir }; explicit AbstractFunction(AbstractFunctionKind kind) : kind_(kind) {} public:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 1.9K bytes - Viewed (0) -
tensorflow/c/eager/gradient_checker_test.cc
// low tolerances enable_tensor_float_32_execution(false); } AbstractContextPtr ctx_; public: bool UseMlir() const { return strcmp(std::get<0>(GetParam()), "mlir") == 0; } bool UseFunction() const { return std::get<2>(GetParam()); } }; TEST_P(GradientCheckerTest, TestMatMul) { float A_vals[] = {1.0f, 2.0f, 3.0f, 4.0f}; int64_t A_dims[] = {2, 2};
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 6.5K bytes - Viewed (0)