Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,295 for names_ (0.12 sec)

  1. tensorflow/compiler/jit/device_util.cc

    }
    
    absl::StatusOr<DeviceId> DeviceInfoCache::GetIdFor(absl::string_view name) {
      TF_RET_CHECK(!name.empty());
    
      auto it = name_to_id_.find(name);
      if (it != name_to_id_.end()) {
        return it->second;
      }
    
      int new_id = names_.size();
      names_.push_back(string(name));
      id_to_device_type_.push_back(std::make_unique<DeviceType>(""));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_util.h

      bool IsCpu(DeviceId device) const { return is_cpu_[device.id()]; }
    
      absl::string_view GetNameFor(DeviceId device) const {
        return names_[device.id()];
      }
    
      absl::StatusOr<DeviceId> GetIdFor(absl::string_view name);
    
      using DeviceRegistration = const XlaOpRegistry::DeviceRegistration;
    
      DeviceRegistration* GetCompilationDevice(DeviceId device) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/config/host/names.go

    //	Names(["foo.com","*.net"]).Intersection(Names(["*.com","bar.net"])) = Names(["foo.com","bar.net"])
    //	Names(["foo.com","*.net"]).Intersection(Names(["*.bar.net"]))       = Names(["*.bar.net"])
    //	Names(["foo.com"]).Intersection(Names(["bar.com"]))                 = Names([])
    //	Names([]).Intersection(Names(["bar.com"])                           = Names([])
    func (h Names) Intersection(other Names) Names {
    	result := make(Names, 0, len(h))
    	for _, hHost := range h {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

    import org.apache.commons.lang.StringUtils;
    
    public abstract class Names {
    
        public static Names of(String name) {
            if (name.equals("main")) {
                return new Main();
            }
            return new Other(name, name);
        }
    
        public static Names of(String name, String baseName) {
            return new Other(name, baseName);
        }
    
        public abstract Names append(String suffix);
    
        /**
         * The raw name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/names/names.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package names
    
    const (
    	PrioritySort                    = "PrioritySort"
    	DefaultBinder                   = "DefaultBinder"
    	DefaultPreemption               = "DefaultPreemption"
    	DynamicResources                = "DynamicResources"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 14:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Names.java

    import com.google.common.base.Joiner;
    
    import java.util.Locale;
    
    class Names {
        static String displayNameFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on(' ').join(parts);
        }
    
        static String idFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on('-').join(parts);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope_test.cc

      EXPECT_EQ(names2[2], "linear_2/c1");
      EXPECT_EQ(names2[3], "linear_2/mul_1");
      EXPECT_EQ(names2[4], "linear_2");
    
      const auto names3 = LinearOp(root.WithOpName("c"));
    
      EXPECT_EQ(names3[0], "c/mul");
      EXPECT_EQ(names3[1], "c/bias_add");
      EXPECT_EQ(names3[2], "c/c1");
      EXPECT_EQ(names3[3], "c/mul_1");
      EXPECT_EQ(names3[4], "c");
    }
    
    TEST(ScopeTest, SingleUseScope) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p mips; DO NOT EDIT.
    
    package mips
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ABSD",
    	"ABSF",
    	"ABSW",
    	"ADD",
    	"ADDD",
    	"ADDF",
    	"ADDU",
    	"ADDW",
    	"AND",
    	"BEQ",
    	"BFPF",
    	"BFPT",
    	"BGEZ",
    	"BGEZAL",
    	"BGTZ",
    	"BLEZ",
    	"BLTZ",
    	"BLTZAL",
    	"BNE",
    	"BREAK",
    	"CLO",
    	"CLZ",
    	"CMOVF",
    	"CMOVN",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p loong64; DO NOT EDIT.
    
    package loong64
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ABSD",
    	"ABSF",
    	"ADD",
    	"ADDD",
    	"ADDF",
    	"ADDU",
    	"ADDW",
    	"AND",
    	"BEQ",
    	"BGEZ",
    	"BLEZ",
    	"BGTZ",
    	"BLTZ",
    	"BFPF",
    	"BFPT",
    	"BNE",
    	"BREAK",
    	"CLO",
    	"CLZ",
    	"CMPEQD",
    	"CMPEQF",
    	"CMPGED",
    	"CMPGEF",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/anames0.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package mips
    
    var cnames0 = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"FCREG",
    	"MREG",
    	"WREG",
    	"HI",
    	"LO",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    	"LACON",
    	"LECON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 554 bytes
    - Viewed (0)
Back to top