Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 394 for CL (0.1 sec)

  1. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

    #include "tensorflow/lite/kernels/register.h"
    #include "tensorflow/lite/model.h"
    #include "tensorflow/lite/optional_debug_tools.h"
    
    using llvm::cl::desc;
    using llvm::cl::init;
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    static opt<std::string> input_filename(llvm::cl::Positional,
                                           desc("<input file>"), init("-"));
    
    // NOLINTNEXTLINE
    static opt<bool> dump_state("dump-interpreter-state",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

    // Tests for verifying the tflite model with min/max can be imported
    // correctly.
    
    // NOLINTNEXTLINE
    static opt<std::string> inputFileName(llvm::cl::Positional,
                                          llvm::cl::desc("<input file>"),
                                          llvm::cl::init("-"));
    
    namespace mlir {
    namespace {
    std::optional<std::unique_ptr<tflite::ModelT>> InjectStatsToFullyConnected(
        llvm::StringRef buffer) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                void execute(Runnable runnable) {
                    startThread(runnable)
                }
            }
        }
    
        TestThread startThread(Runnable cl) {
            lock.lock()
            try {
                TestThread thread = new TestThread(this, lock, cl)
                thread.start()
                return thread
            } finally {
                lock.unlock()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/test/groovy/org/gradle/model/dsl/internal/NonTransformedModelDslBackingTest.groovy

            missingMethod.method == 'unknown'
        }
    
        static class TestObject {
            String prop
    
            def defineSomeThing(Closure cl) {
                cl.delegate = this
                cl.call()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

    				d := d
    				t.NewSubTest(d.name).Run(func(t framework.TestContext) {
    					for _, cl := range t.Clusters() {
    						if !cl.IsPrimary() && d.requirePrimary {
    							// Skip verification of dashboards that won't be present on non primary(remote) clusters.
    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

            new BuildTestFixture(projectDir).withBuildInRootDir().singleProjectBuild(projectName, cl)
        }
    
        BuildTestFile singleProjectBuildInSubDir(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().singleProjectBuild(projectName, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

            def builder = workerFactory.multiRequestWorker(cl)
            def worker = builder.build()
            worker.start()
            def result = worker.run(12.toLong())
    
            then:
            result.toString() == "custom-result"
    
            cleanup:
            worker?.stop()
        }
    
        def "propagates failure to load worker implementation class"() {
            given:
            def cl = compileWithoutClasspath("CustomTestWorker", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  8. test/codegen/compare_and_branch.go

    package codegen
    
    //go:noinline
    func dummy() {}
    
    // Signed 64-bit compare-and-branch.
    func si64(x, y chan int64) {
    	// s390x:"CGRJ\t[$](2|4), R[0-9]+, R[0-9]+, "
    	for <-x < <-y {
    		dummy()
    	}
    
    	// s390x:"CL?GRJ\t[$]8, R[0-9]+, R[0-9]+, "
    	for <-x == <-y {
    		dummy()
    	}
    }
    
    // Signed 64-bit compare-and-branch with 8-bit immediate.
    func si64x8(doNotOptimize int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    // NOLINTNEXTLINE
    static llvm::cl::opt<bool> print_function_result_mapping(
        "print-function-result-mapping",
        llvm::cl::desc(
            "Print the mapping of function result to flatbuffer output buffer"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> weight_quantization(
        "weight_quantization",
        llvm::cl::desc("The type of the quantized weight buffer. Must be NONE, "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/VisitableURLClassLoaderTest.groovy

            def parent = new ClassLoader(null) { }
            def classPath = [new File("a").toURI().toURL(), new File("b").toURI().toURL()]
            def cl = new VisitableURLClassLoader("test", parent, classPath)
    
            when:
            cl.visit(visitor)
    
            then:
            1 * visitor.visitSpec({it instanceof VisitableURLClassLoader.Spec}) >> { VisitableURLClassLoader.Spec spec ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top