Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for output1 (0.37 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // Check that we have two inputs and one output.
      ASSERT_THAT(op->inputs, SizeIs(2));
      ASSERT_THAT(op->outputs, SizeIs(1));
    
      // Check that all is quantized.
      auto output = subgraph->tensors[op->outputs[0]].get();
      auto input1 = subgraph->tensors[op->inputs[0]].get();
      auto input2 = subgraph->tensors[op->inputs[1]].get();
    
      EXPECT_THAT(output->type, Eq(TensorType_INT8));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "converting \${input.name} to red"
                        assert input.file
                        def output = outputs.file(input.name + ".red")
                        output.text = input.text + ".red"
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. configure.py

        try:
          output = run_shell(device_query_bin).split('\n')
          pattern = re.compile('\d*\\.\d*')
          output = [pattern.search(x) for x in output if 'Capability' in x]
          output = ','.join(x.group() for x in output if x is not None)
        except subprocess.CalledProcessError:
          output = ''
      else:
        output = ''
      return output
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	filterInputChain          = "filter-input"
    	filterForwardChain        = "filter-forward"
    	filterOutputChain         = "filter-output"
    	filterOutputPostDNATChain = "filter-output-post-dnat"
    	natPreroutingChain        = "nat-prerouting"
    	natOutputChain            = "nat-output"
    	natPostroutingChain       = "nat-postrouting"
    
    	// service dispatch
    	servicesChain       = "services"
    	serviceIPsMap       = "service-ips"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            run(ENABLE_CLI_OPT, '--warn', 'doIt')
    
            then:
            testDirectory.file('out/reports/configuration-cache').isDirectory()
            resolveConfigurationCacheReportDirectory(testDirectory.file('out'), output) == null
        }
    
        def "link to report is shown with --info if there are no-CC problems"() {
            def reportDir = testDirectory.file('out/reports/configuration-cache')
            file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    		if _, ok := objectsToDelete[object]; !ok {
    			objectsToDelete[object] = index
    		}
    	}
    
    	toNames := func(input map[ObjectToDelete]int) (output []ObjectToDelete) {
    		output = make([]ObjectToDelete, len(input))
    		idx := 0
    		for obj := range input {
    			output[idx] = obj
    			idx++
    		}
    		return
    	}
    
    	// Disable timeouts and cancellation
    	ctx = bgContext(ctx)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	// The slots that make up each variable, indexed by VarID.
    	VarSlots [][]SlotID
    	// The location list data, indexed by VarID. Must be processed by PutLocationList.
    	LocationLists [][]byte
    	// Register-resident output parameters for the function. This is filled in at
    	// SSA generation time.
    	RegOutputParams []*ir.Name
    	// Variable declarations that were removed during optimization
    	OptDcl []*ir.Name
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.eclipse.model.Output.appendNode(groovy.util.Node)> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Output.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    // Compatible with a number of Gradle lazy APIs that accept also java.io.File
    val output: Provider<RegularFile> = layout.buildDirectory.file("myOutput.txt")
    
    // If you really need the java.io.File for a non lazy API
    output.get().asFile
    
    // Or a path for a lazy String based API
    output.map { it.asFile.path }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if diff := cmp.Diff(cmgr.GetTracing(), expected, protocmp.Transform()); diff != "" {
    			t.Fatalf("Testcase failure: %s custom tags did match not expected output; diff: %v", name, diff)
    		}
    	}
    }
    
    func TestOutboundListenerConfig_TCPFailThrough(t *testing.T) {
    	// Add a service and verify it's config
    	services := []*model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top