Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetFromText (0.4 sec)

  1. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

          tfr_raw_text.append(text);
        }
      }
    
      auto ctx = TFRDecomposeContext::GetFromText(tfr_raw_text, mlir_ctx);
      if (!ctx) {
        return errors::Internal(absl::StrCat(
            "Failed to load the imported decomposition lib: ", tfr_raw_text));
      }
      return ctx;
    }
    
    std::unique_ptr<TFRDecomposeContext> TFRDecomposeContext::GetFromText(
        StringPiece tfr_raw_text, mlir::MLIRContext* mlir_ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.h

      // Constructs the decompose context from the tfr text module and the mlir
      // context. The tfr text module is added to the mlir context.
      static std::unique_ptr<TFRDecomposeContext> GetFromText(
          StringPiece tfr_raw_text, mlir::MLIRContext* mlir_ctx);
    
      // Decomposes the op in the NodeDef to a set of primitive ops according to the
      // decompose library in the context. Wrap the decomposed result in a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 11:12:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top