Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 210 for module_name (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    //   replicated, e.g. CPU/GPU graphs. is_in_fallback_enabled_mode - Whether this
    //   was called with fallback to the non-MLIR Bridge. This is just for logging
    //   purposes and doesn't affect logic. module_name - What the input module name
    //   is for debugging help.
    //
    // Output: Modifies the input module in place with clustered operations.
    //   status - Whether the transformation to cluster the input MLIR module was
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.h

    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(mlir::PassManager& pm,
                              const std::string& dump_group_name,
                              llvm::StringRef module_name = llvm::StringRef());
    
    };  // namespace internal
    };  // namespace tf2xla
    };  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.h

    //     devices.
    tensorflow::Status RunLowerClusterToRuntimeOpsPassPipeline(
        mlir::ModuleOp module, tsl::DeviceType xla_device_type,
        llvm::StringRef module_name = llvm::StringRef());
    
    // The same API as RunLowerClusterToRuntimeOpsPassPipeline but as an MLIR pass
    // pipeline.
    void RegisterTPULowerClusterToRuntimeOpsPassPipeline();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 21:47:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns =
            {},
        llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
            custom_legalization_passes = {},
        llvm::StringRef module_name = llvm::StringRef());
    
    // Creates a MLIR pipeline that lowers MLIR module to MHLO dialect. The input
    // module should only contain operations in tf dialect. For example, if the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.h

    namespace mlir {
    namespace TFTPU {
    
    // Creates a pass that rewrites `tf_device.launch_func` on TPUs into TPU runtime
    // ops.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>> CreateTPURewritePass(
        llvm::StringRef module_name = llvm::StringRef());
    
    // Creates a pass that adds ops which perform formatting on variables at
    // run-time according to compilation result.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/runtime/asan/asan.go

    // structure, we need to make the same changes.
    struct _asan_global {
    	uintptr_t beg;
    	uintptr_t size;
    	uintptr_t size_with_redzone;
    	const char *name;
    	const char *module_name;
    	uintptr_t has_dynamic_init;
    	struct _asan_global_source_location *location;
    	uintptr_t odr_indicator;
    };
    
    
    extern void __asan_register_globals(void*, long int);
    
    // Register global variables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 00:22:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.h

    ABSL_DEPRECATED(
        "Use v2/tf_dialect_to_executor.h::ExportFromTensorflowDialectToExecutor "
        "instead.")
    tensorflow::Status ExportFromTensorflowDialectToExecutor(
        mlir::ModuleOp module, llvm::StringRef module_name = llvm::StringRef());
    
    }  // namespace v1
    }  // namespace tf2xla
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 18:45:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    // `tf_device.cluster_func` ops.
    // Output: A MLIR module in the Tensorflow Executor Dialect.
    tensorflow::Status ExportFromTensorflowDialectToExecutor(
        mlir::ModuleOp module, llvm::StringRef module_name = llvm::StringRef());
    
    }  // namespace v2
    }  // namespace tf2xla
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

        buildKtSourceModule {
            configLanguageVersionSettings?.let { this.languageVersionSettings = it }
            this.platform = platform
            this.moduleName = compilerConfig.get(CommonConfigurationKeys.MODULE_NAME) ?: "<no module name provided>"
    
            addModuleDependencies(moduleName)
    
            addSourceRoots(compilerConfig.javaSourceRoots.map { Paths.get(it) })
        }.apply(::addModule)
    
    
        this.platform = platform
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/KotlinSourceParser.kt

                put(JVMConfigurationKeys.RETAIN_OUTPUT_IN_MEMORY, false)
                put(JVMConfigurationKeys.DISABLE_OPTIMIZATION, true)
                put(CommonConfigurationKeys.MODULE_NAME, "parser")
    
                configureKotlinCompilerForGradleBuild()
    
                addJvmClasspathRoots(PathUtil.getJdkClassesRoots(Jvm.current().javaHome))
                addJvmClasspathRoots(compilationClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top