Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,071 for compilers (0.45 sec)

  1. tensorflow/compiler/mlir/g3doc/overview.md

    and library of compiler utilities that sits between the model representation
    and low-level compilers/executors that generate hardware-specific code.
    
    MLIR is, at its heart, a flexible infrastructure for modern optimizing
    compilers. This means it consists of a specification for intermediate
    representations (IR) and a code toolkit to perform transformations on that
    representation. (In compiler parlance, as you move from higher-level
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java

    import xsbti.T2;
    import xsbti.VirtualFile;
    import xsbti.compile.AnalysisContents;
    import xsbti.compile.AnalysisStore;
    import xsbti.compile.ClassFileManagerType;
    import xsbti.compile.ClasspathOptionsUtil;
    import xsbti.compile.CompileAnalysis;
    import xsbti.compile.CompileOptions;
    import xsbti.compile.CompileResult;
    import xsbti.compile.CompilerCache;
    import xsbti.compile.Compilers;
    import xsbti.compile.DefinesClass;
    import xsbti.compile.IncOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    TEXT ·klmd(SB), NOFRAME|NOSPLIT, $0-64
    	// TODO: SHAKE support
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptCompilerFactory.java

    package org.gradle.groovy.scripts;
    
    /**
     * A factory for script compilers.
     */
    public interface ScriptCompilerFactory {
        /**
         * Creates a compiler for the given source. The returned compiler can be used to compile the script into various
         * different forms.
         *
         * @param source The script source.
         * @return a compiler which can be used to compiler the script.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                List<ToolChainCandidate> compilers = new ArrayList<>();
                if (OperatingSystem.current().isWindows()) {
                    compilers.addAll(findVisualCpps());
                    compilers.add(findMinGW());
                } else if (OperatingSystem.current().isMacOsX()) {
                    compilers.addAll(findClangs(true));
                    compilers.addAll(findGccs(false));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/NativeToolChain.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.platform.base.ToolChain;
    
    /**
     * A set of compilers and linkers that are used together to construct a native binary.
     */
    @HasInternalProtocol
    public interface NativeToolChain extends ToolChain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 926 bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaCompilerFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.language.base.internal.compile.CompileSpec;
    import org.gradle.language.base.internal.compile.Compiler;
    
    /**
     * Creates Java compilers based on the provided compile options.
     */
    @ServiceScope(Scope.Project.class)
    public interface JavaCompilerFactory {
        <T extends CompileSpec> Compiler<T> create(Class<T> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChain.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A set of compilers that are used together to construct binaries.
     */
    @HasInternalProtocol
    public interface ToolChain extends Named {
        /**
         * Returns a human consumable name for this tool chain.
         *
         * @since 1.11
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1003 bytes
    - Viewed (0)
  9. src/crypto/purego_test.go

    			continue
    		}
    
    		for GOARCH := range allGOARCH {
    			context := build.Context{
    				GOOS:      "linux", // darwin has custom assembly
    				GOARCH:    GOARCH,
    				GOROOT:    testenv.GOROOT(t),
    				Compiler:  build.Default.Compiler,
    				BuildTags: []string{"purego", "math_big_pure_go"},
    			}
    
    			pkg, err := context.Import(pkgName, "", 0)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(pkg.SFiles) == 0 {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.h"
    
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace quant {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top