Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 607 for Compiler (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    }
    
    type compiler struct {
    	varEnvs variableDeclEnvs
    }
    
    func NewCompiler(env *environment.EnvSet) Compiler {
    	return &compiler{varEnvs: mustBuildEnvs(env)}
    }
    
    type variableDeclEnvs map[OptionalVariableDeclarations]*environment.EnvSet
    
    // CompileCELExpression returns a compiled CEL expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/compile.cc

    #include "tensorflow/compiler/aot/compile.h"
    
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/base/call_once.h"
    #include "llvm-c/Target.h"
    #include "llvm/Support/ManagedStatic.h"
    #include "tensorflow/compiler/aot/codegen.h"
    #include "tensorflow/compiler/aot/flags.h"
    #include "tensorflow/compiler/aot/quantize.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            ":clustering_passes_inc_gen",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:attribute_utils",
            "//tensorflow/compiler/mlir/tensorflow:string_util",
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_analysis",
            "//tensorflow/compiler/mlir/tensorflow:tpu_rewrite_device_util",
            "//tensorflow/compiler/mlir/tf2xla/internal/utils:dialect_detection_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter_test.go

    	if runtime.Compiler != "gc" {
    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	tmpdir := mktmpdir(t)
    	defer os.RemoveAll(tmpdir)
    	testoutdir := filepath.Join(tmpdir, "testdata")
    
    	// b.go needs to be compiled from the output directory so that the compiler can
    	// find the compiled package a. We pass the full path to compile() so that we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "//tensorflow/compiler/mlir/tensorflow:convert_tensor",
            "//tensorflow/compiler/mlir/tensorflow:convert_type",
            "//tensorflow/compiler/mlir/tensorflow:device_util",
            "//tensorflow/compiler/mlir/tensorflow:dump_mlir_util",
            "//tensorflow/compiler/mlir/tensorflow:dynamic_shape_utils",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

            ":tf_xla_passes",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:serialize_mlir_module_utils",
            "//tensorflow/compiler/tf2xla:xla_compilation_device",
            "//tensorflow/compiler/tf2xla:xla_context",
            "//tensorflow/compiler/tf2xla:xla_expression",
            "//tensorflow/compiler/tf2xla:xla_helpers",
            "//tensorflow/compiler/tf2xla:xla_op_registry",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:pre_calibration",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:saved_model_export",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:saved_model_import",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:types",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:weight_only_ptq",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/BUILD

            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_sync_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir/mlrt:mlrt_ops",
            "//tensorflow/compiler/mlir/tfrt/ir/mlrt:tf_mlrt_ops",
            "//tensorflow/compiler/mlir/tfrt/transforms/ifrt:tf_ifrt_passes",
            "//tensorflow/compiler/mlir/tfrt/transforms/mlrt:passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

        def 'source compatibility serves as target compatibility fallback on compile spec when compiler tool is defined'() {
            def javaCompile = project.tasks.create('compileJava', JavaCompile)
            javaCompile.destinationDirectory.fileValue(new File('somewhere'))
            def javaHome = Jvm.current().javaHome
            def metadata = Mock(JavaInstallationMetadata)
            def compiler = Mock(JavaCompiler)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * <p>
         * The source path indicates the location of source files that <i>may</i> be compiled if necessary.
         * It is effectively a complement to the class path, where the classes to be compiled against are in source form.
         * It does <b>not</b> indicate the actual primary source being compiled.
         * <p>
         * The source path feature of the Java compiler is rarely needed for modern builds that use dependency management.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top