Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for si4ref (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_Int4Ref : TF_TensorFlowType<"Int4Ref", "si4ref">;
    def TF_Int8Ref : TF_TensorFlowType<"Int8Ref", "i8ref">;
    def TF_Int16Ref : TF_TensorFlowType<"Int16Ref", "i16ref">;
    def TF_Int32Ref : TF_TensorFlowType<"Int32Ref", "i32ref">;
    def TF_Int64Ref : TF_TensorFlowType<"Int64Ref", "i64ref">;
    
    def TF_Uint4Ref : TF_TensorFlowType<"Uint4Ref", "ui8ref">;
    def TF_Uint8Ref : TF_TensorFlowType<"Uint8Ref", "ui8ref">;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  2. pkg/serviceaccount/claims.go

    		return nil, fmt.Errorf("service account %s/%s has been deleted", namespace, saref.Name)
    	}
    
    	if secref != nil {
    		// Make sure token hasn't been invalidated by deletion of the secret
    		secret, err := v.getter.GetSecret(namespace, secref.Name)
    		if err != nil {
    			klog.V(4).Infof("Could not retrieve bound secret %s/%s for service account %s/%s: %v", namespace, secref.Name, namespace, saref.Name, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            );
    
            String gitRef
            String urlTemplate
            String propPrefix
    
            CI(String gitRef, String urlTemplate, String propPrefix) {
                this.gitRef = gitRef
                this.urlTemplate = urlTemplate
                this.propPrefix = propPrefix
            }
    
            String getUrl() {
                return String.format(urlTemplate, gitRef)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. cmd/encryption-v1_test.go

    				t.Errorf("Case %d: unexpected err: %v", i, err)
    			}
    
    			oRef, lRef, skipRef, snRef, psRef := decryptedRangeRef(test.decSizes, skipLen, readLen, false)
    			if o != oRef || l != lRef || skip != skipRef || sn != snRef || ps != psRef {
    				t.Errorf("Case %d: test failed: %d %d %d %d %d (Ref: %d %d %d %d %d)",
    					i, o, l, skip, sn, ps, oRef, lRef, skipRef, snRef, psRef)
    			}
    		}
    
    		// Read the last 6Mib+1 bytes of the (decrypted)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 24 04:17:08 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      absl::c_iota(spatial_dims, 1);
      bool has_dynamic_spatial_dim = absl::c_any_of(
          spatial_dims,
          [&input_shape](int64_t dim) { return input_shape.isDynamicDim(dim); });
      if (conv_padding.strref() == "SAME" && has_dynamic_spatial_dim) {
        return PadForDynamicShapedInputSamePadding(
            builder, loc, input, filter, input_zp_value, strides, dilations,
            conv_padding, padding, num_dims);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    	}
    	var b goobj.HashType
    	copy(b[:], h.Sum(nil))
    	return b
    }
    
    func makeSymRef(s *LSym) goobj.SymRef {
    	if s == nil {
    		return goobj.SymRef{}
    	}
    	if s.PkgIdx == 0 || !s.Indexed() {
    		fmt.Printf("unindexed symbol reference: %v\n", s)
    		panic("unindexed symbol reference")
    	}
    	return goobj.SymRef{PkgIdx: uint32(s.PkgIdx), SymIdx: uint32(s.SymIdx)}
    }
    
    func (w *writer) Reloc(r *Reloc) {
    	o := &w.tmpReloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        return true;
      }
      std::string shard_string;
      if (op->hasAttr(kXLAShardingAttr)) {
        shard_string =
            op->getAttrOfType<StringAttr>(kXLAShardingAttr).strref().str();
      } else {
        shard_string = op->getAttrOfType<StringAttr>(kShardingAttr).strref().str();
      }
      xla::OpSharding sharding;
      if (!shard_string.empty() && sharding.ParseFromString(shard_string)) {
        // Only checking op with TUPLE sharding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

        if (auto name = loc.dyn_cast<NameLoc>()) {
          return name.getName().strref();
        } else if (auto fused_name = loc.dyn_cast<FusedLoc>()) {
          for (auto sub_loc : fused_name.getLocations()) {
            if (auto named_sub_loc = sub_loc.dyn_cast<NameLoc>()) {
              return named_sub_loc.getName().strref();
            }
          }
        }
        return llvm::StringRef("");
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/encoding/base64/base64_test.go

    	conv func(string) string // Reference string converter
    }
    
    var encodingTests = []encodingTest{
    	{StdEncoding, stdRef},
    	{URLEncoding, urlRef},
    	{RawStdEncoding, rawRef},
    	{RawURLEncoding, rawURLRef},
    	{funnyEncoding, funnyRef},
    	{StdEncoding.Strict(), stdRef},
    	{URLEncoding.Strict(), urlRef},
    	{RawStdEncoding.Strict(), rawRef},
    	{RawURLEncoding.Strict(), rawURLRef},
    	{funnyEncoding.Strict(), funnyRef},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        if (cloned == func) continue;
        // Patch up the op attribute to point to the new function.
        for (NamedAttribute attr : op->getAttrs()) {
          auto symref = mlir::dyn_cast<FlatSymbolRefAttr>(attr.getValue());
          if (!symref) continue;
          if (symref.getValue() != func.getName()) continue;
          op->setAttr(attr.getName(),
                      FlatSymbolRefAttr::get(op->getContext(), cloned.getName()));
          break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top