Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 314 for Interpreter (0.19 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

    import java.io.File
    import java.lang.reflect.InvocationTargetException
    
    
    /**
     * An optimised interpreter for the Kotlin DSL based on the idea of
     * [partial evaluation](https://en.wikipedia.org/wiki/Partial_evaluation).
     *
     * Instead of interpreting a given Kotlin DSL script directly, the interpreter emits a
     * specialized program that captures the optimal execution procedure for the particular
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

             kTfLiteOk);
      QCHECK(interpreter->AllocateTensors() == kTfLiteOk);
      QCHECK(interpreter->Invoke() == kTfLiteOk);
    
      // Print the resulting outputs.
      // TODO(jpienaar): Allow specifying output stream/file.
      QCHECK(interpreter->outputs().size() ==
             main.getFunctionType().getNumResults());
      for (int index : interpreter->outputs()) {
        const auto& out = *interpreter->tensor(index);
        // Print name if named.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/regex.go

    // call invocations.
    var FindRegexOptimization = &interpreter.RegexOptimization{
    	Function:   "find",
    	RegexIndex: 1,
    	Factory: func(call interpreter.InterpretableCall, regexPattern string) (interpreter.InterpretableCall, error) {
    		compiledRegex, err := regexp.Compile(regexPattern)
    		if err != nil {
    			return nil, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. ci/official/wheel_test/WORKSPACE

    python_register_toolchains(
        name = "python",
        ignore_root_user_error = True,
        python_version = TF_PYTHON_VERSION,
    )
    
    load("@python//:defs.bzl", "interpreter")
    load("@rules_python//python:pip.bzl", "pip_parse")
    
    pip_parse(
        name = "pypi",
        python_interpreter_target = interpreter,
        requirements = "//:requirements_lock_" + TF_PYTHON_VERSION.replace(".", "_") + ".txt",
    )
    
    load("@pypi//:requirements.bzl", "install_deps")
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/all.bat

    if x%GOBUILDEXIT%==x1...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:36:22 UTC 2023
    - 543 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                scriptHandler.dependencies,
                "classpath"
            )
        }
    
        private
        val interpreter by lazy {
            Interpreter(InterpreterHost(gradlePropertiesController))
        }
    
        inner class InterpreterHost(
            gradleProperties: GradlePropertiesController,
        ) : Interpreter.Host {
    
            override val compilerOptions: KotlinCompilerOptions =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. .idea/runConfigurations/run_IR_test_in_node_js.xml

        <command value="run" />
        <scripts>
          <script value="runIrTestInNode" />
        </scripts>
        <arguments value="$FilePath$" />
        <node-interpreter value="project" />
        <envs />
        <method v="2" />
      </configuration>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 12 10:57:03 UTC 2018
    - 463 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2exec/tfl_while_op.mlir

    // RUN: tf-opt --mlir-print-debuginfo --canonicalize --tfl-while-loop-outline %s | mlir-tflite-runner --dump-interpreter-state 2>&1 | FileCheck %s
    
    // Verify value computed:
    // ----------------------
    // CHECK: result: Tensor<type: FLOAT32, shape: 1, values: 96>
    // CHECK: pconst: Tensor<type: INT32, shape: , values: 1>
    
    // Verify tensors in interpreter state:
    // ------------------------------------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 19 17:11:31 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains a path to the script relative to {@code baseDir}.
         * This means that {@code baseDir} has to be used as a current dir when executing the command,
         * otherwise interpreter won't be able to find the script file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. WORKSPACE

    load("@python_version_repo//:py_version.bzl", "TF_PYTHON_VERSION")
    
    python_register_toolchains(
        name = "python",
        ignore_root_user_error = True,
        python_version = TF_PYTHON_VERSION,
    )
    
    load("@python//:defs.bzl", "interpreter")
    load("@rules_python//python:pip.bzl", "package_annotation", "pip_parse")
    
    NUMPY_ANNOTATIONS = {
        "numpy": package_annotation(
            additive_build_content = """\
    filegroup(
        name = "includes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top