Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 214 for target01 (0.24 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

      std::string name = hardware_name;
      std::transform(
          name.begin(), name.end(), name.begin(),
          [](unsigned char c) -> unsigned char { return std::toupper(c); });
      return name;
    }
    
    // Get the target annotation form the op.
    inline std::optional<std::string> GetTargetAnnotation(Operation* op) {
      auto device = op->getAttrOfType<StringAttr>(kDevice);
      if (device == nullptr || device.getValue().empty()) return std::nullopt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/target.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run mkbuiltin.go
    
    package typecheck
    
    import "cmd/compile/internal/ir"
    
    // Target is the package being compiled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:38:26 UTC 2020
    - 312 bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/target.go

    	return t.BuildMode == BuildModeShared
    }
    
    func (t *Target) IsPlugin() bool {
    	return t.BuildMode == BuildModePlugin
    }
    
    func (t *Target) IsInternal() bool {
    	return t.LinkMode == LinkInternal
    }
    
    func (t *Target) IsExternal() bool {
    	return t.LinkMode == LinkExternal
    }
    
    func (t *Target) IsPIE() bool {
    	return t.BuildMode == BuildModePIE
    }
    
    func (t *Target) IsSharedGoLink() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

          }
        }
      }
      attr {
        key: "use_locking"
        value {
          b: false
        }
      }
    }
    versions {
      producer: 309
    }
    
    # Tests single target node with no pruning set. All nodes will remain in the
    # graph and the target node is added to the graph fetch as a control.
    #
    # CHECK-LABEL: func @main
    # CHECK-SAME:  control_outputs = "AssignAdd"
    # CHECK-SAME:  inputs = ""
    # CHECK-SAME:  outputs = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/AsyncDispatchTest.groovy

            dispatch.stop()
    
            then:
            1 * target1.dispatch('message1')
            then:
            1 * target1.dispatch('message2')
        }
    
        def 'dispatch does not block while no idle target available'() {
            given:
            Dispatch<String> target1 = new DispatchStub(
                    message1: {
                        parallel.syncAt(1)
                        parallel.syncAt(2)
                    },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

        void antTargetsAndGradleTasksCanDependOnEachOther() {
            testFile('build.xml') << """
    <project>
        <target name='target1' depends='target2,initialize'>
            <touch file='build/target1.txt'/>
        </target>
        <target name='target2' depends='initialize'>
            <touch file='build/target2.txt'/>
        </target>
    </project>
    """
            testFile('build.gradle') << """
    ant.importBuild(file('build.xml'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. cmd/bucket-targets.go

    		if target.SourceBucket == bucket &&
    			target.TargetBucket == bucket &&
    			target.Endpoint == ep.Host &&
    			target.Secure == (ep.Scheme == "https") &&
    			target.Type == madmin.ReplicationService {
    			return target.Arn
    		}
    	}
    	return ""
    }
    
    // generate ARN that is unique to this target type
    func generateARN(t *madmin.BucketTarget, deplID string) string {
    	uuid := deplID
    	if uuid == "" {
    		uuid = mustGetUUID()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. internal/event/targetidset_test.go

    		{NewTargetIDSet(), NewTargetIDSet(TargetID{"1", "webhook"}), NewTargetIDSet(TargetID{"1", "webhook"})},
    		{NewTargetIDSet(TargetID{"1", "webhook"}), NewTargetIDSet(), NewTargetIDSet(TargetID{"1", "webhook"})},
    		{NewTargetIDSet(TargetID{"1", "webhook"}), NewTargetIDSet(TargetID{"2", "amqp"}), NewTargetIDSet(TargetID{"1", "webhook"}, TargetID{"2", "amqp"})},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/target-annotation.mlir

    // RUN: tac-opt-all-backends -tfl-target-annotation='device-specs=GPU' %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @testConv(%arg0: tensor<256x32x32x3xf32>, %arg1: tensor<16x3x3x3xf32>, %arg2: tensor<16xf32>) -> tensor<256x30x30x16xf32> {
      // CHECK: tac.device = "GPU", tac.inference_type = "FLOAT"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/test/groovy/org/gradle/initialization/CompositeInitScriptFinderTest.groovy

        final InitScriptFinder target1 = Mock()
        final InitScriptFinder target2 = Mock()
        final CompositeInitScriptFinder finder = new CompositeInitScriptFinder(target1, target2)
        
        def "collects up scripts from all finders"() {
            def result = []
    
            when:
            finder.findScripts(result)
    
            then:
            1 * target1.findScripts(result)
            1 * target2.findScripts(result)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
Back to top