Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for tf_export (0.41 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #  ifdef CU_DLL
    #    ifdef CU_BUILD_DLL
    #      define CU_EXPORT __declspec(dllexport)
    #    else
    #      define CU_EXPORT __declspec(dllimport)
    #    endif
    #  else
    #    define CU_EXPORT
    #  endif
    #  if _MSC_VER < 1900
    #    define snprintf _snprintf
    #  endif
    #else
    #  define CU_EXPORT
    #endif  /* WIN32 */
    
    #include "CUError.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFile.java

                    return new File(path).exists();
                }
            });
            lines.addAll(collect(validHeaderDirs, path -> "\tumbrella \"" + path + "\""));
            lines.add("\texport *");
            lines.add("}");
            try {
                Files.createParentDirs(moduleMapFile);
                FileUtils.writeLines(moduleMapFile, lines);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      void  CU_free(void *ptr, unsigned int uiLine, const char* szFileName);
      void* CU_realloc(void *ptr, size_t size, unsigned int uiLine, const char* szFileName);
      CU_EXPORT void CU_dump_memory_usage(const char*);
    
      /** c-allocate with memory tracking. */
      #define CU_CALLOC(x, y)         CU_calloc((x), (y), __LINE__, __FILE__)
      /** m-allocate with memory tracking. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    #include "tensorflow/core/protobuf/saver.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Suffix string for the module export step. Used for debugging.
    constexpr absl::string_view kExportStepSuffix = "_export";
    
    // Options when running passes for exporting an MLIR ModuleOp.
    struct ExportOptions {
      // If set to `true`, it runs `DuplicateShapeDeterminingConstantsPass` before
      // lowering to tf_executor dialect.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/action.go

    // .go_export section.
    func readpkglist(shlibpath string) (pkgs []*load.Package) {
    	var stk load.ImportStack
    	if cfg.BuildToolchainName == "gccgo" {
    		f, err := elf.Open(shlibpath)
    		if err != nil {
    			base.Fatal(fmt.Errorf("failed to open shared library: %v", err))
    		}
    		defer f.Close()
    		sect := f.Section(".go_export")
    		if sect == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Expm1 op patterns.
    //===----------------------------------------------------------------------===//
    
    // Expm1(x) = Exp(x) - 1
    def LowerExp1mOp : Pat<
      (TF_Expm1Op $x),
      (TF_SubOp
        (TF_ExpOp $x),
        (TF_ConstOp (GetScalarOfType<1> $x))
      )>;
    
    //===----------------------------------------------------------------------===//
    // MatrixBandPart op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    foreach Mapping = [
                       [TF_AbsOp, MHLO_AbsOp],
                       [TF_CeilOp, MHLO_CeilOp],
                       [TF_ComplexAbsOp, MHLO_AbsOp],
                       [TF_CosOp, MHLO_CosineOp],
                       [TF_ExpOp, MHLO_ExpOp],
                       [TF_Expm1Op, MHLO_Expm1Op],
                       [TF_ErfOp, MHLO_ErfOp],
                       [TF_FloorOp, MHLO_FloorOp],
                       [TF_ImagOp, MHLO_ImagOp],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeUnique : Pat<(TF_UniqueOp $arg0),(TFL_UniqueOp $arg0)>;
    
    def LegalizeFloorMod : Pat<(TF_FloorModOp $arg0, $arg1),
                               (TFL_FloorModOp $arg0, $arg1)>;
    def LegalizeExp : Pat<(TF_ExpOp $arg0), (TFL_ExpOp $arg0)>;
    
    def LegalizeLRN : Pat<
      (TF_LRNOp $arg0, $radius, F32Attr:$bias, F32Attr:$alpha, F32Attr:$beta),
      (TFL_LocalResponseNormalizationOp $arg0, (convertIntAttrTo32Bit $radius),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    foreach Mapping = [[MHLO_AbsOp, TF_AbsOp],
                       [MHLO_BitcastConvertOp, TF_BitcastOp],
                       [MHLO_CeilOp, TF_CeilOp],
                       [MHLO_CosineOp, TF_CosOp],
                       [MHLO_ExpOp, TF_ExpOp],
                       [MHLO_Expm1Op, TF_Expm1Op],
                       [MHLO_FloorOp, TF_FloorOp],
                       [MHLO_ImagOp, TF_ImagOp],
                       [MHLO_IsFiniteOp, TF_IsFiniteOp],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. RELEASE.md

        indicating its preferred use in language bindings for TensorFlow. What was
        previously `TF_Session` has been renamed to `TF_DeprecatedSession`.
    *   Renamed `TF_Port` to `TF_Output` in the C API.
    *   Removes RegisterShape from public API. Use C++ shape function registration
        instead. indexing now starts from 1 instead of 0, and `bus_id==0` is used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top