Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for attr_ (0.04 sec)

  1. src/crypto/x509/parser.go

    			var atav cryptobyte.String
    			if !set.ReadASN1(&atav, cryptobyte_asn1.SEQUENCE) {
    				return nil, errors.New("x509: invalid RDNSequence: invalid attribute")
    			}
    			var attr pkix.AttributeTypeAndValue
    			if !atav.ReadASN1ObjectIdentifier(&attr.Type) {
    				return nil, errors.New("x509: invalid RDNSequence: invalid attribute type")
    			}
    			var rawValue cryptobyte.String
    			var valueTag cryptobyte_asn1.Tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

      let constBuilderCall = "DenseElementsAttr::get("
        "RankedTensorType::get({" # len # "}, $_builder.getIntegerType(32)), $0)";
    }
    
    // Constraint that Attr has values [1, X, Y, 1]
    def IsIntList1XY1 : AttrConstraint<CPred<"TFIntListIs1XY1($_self)">>;
    
    // Constraint that Attr has values [1, 1, X, Y]
    def IsIntList11XY : AttrConstraint<CPred<"TFIntListIs11XY($_self)">>;
    
    // Constraint that values in list attribute are all ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

        assert(funcs_for_cluster != tpu_funcs.end());
        assert(!funcs_for_cluster->second.empty());
        if (funcs_for_cluster->second.size() == 1) return false;
        for (NamedAttribute attr : op->getAttrs()) {
          auto symbol_ref = mlir::dyn_cast<FlatSymbolRefAttr>(attr.getValue());
          if (!symbol_ref) continue;
          func::FuncOp callee =
              symbol_table.lookup<func::FuncOp>(symbol_ref.getValue());
          if (!callee) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/internal/trace/event.go

    		fmt.Fprintf(&sb, " Name=%q Scope=%s", r.Name, r.Scope)
    		if kind == EventRangeEnd {
    			fmt.Fprintf(&sb, " Attributes=[")
    			for i, attr := range e.RangeAttributes() {
    				if i != 0 {
    					fmt.Fprintf(&sb, " ")
    				}
    				fmt.Fprintf(&sb, "%q=%s", attr.Name, valueAsString(attr.Value))
    			}
    			fmt.Fprintf(&sb, "]")
    		}
    	case EventTaskBegin, EventTaskEnd:
    		t := e.Task()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux.go

    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Gettid() (tid int)
    //sys	Getxattr(path string, attr string, dest []byte) (sz int, err error)
    //sys	InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error)
    //sysnb	InotifyInit1(flags int) (fd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager_linux.go

    	opts.CDIDevices = append(opts.CDIDevices, devOpts.CDIDevices...)
    	return opts, nil
    }
    
    func (cm *containerManagerImpl) UpdatePluginResources(node *schedulerframework.NodeInfo, attrs *lifecycle.PodAdmitAttributes) error {
    	return cm.deviceManager.UpdatePluginResources(node, attrs)
    }
    
    func (cm *containerManagerImpl) GetAllocateResourcesPodAdmitHandler() lifecycle.PodAdmitHandler {
    	return cm.topologyManager
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            if node_def.op == 'XlaCallModule':
              with ir.Context() as context:
                stablehlo_dialect.register_dialect(context)
                # Serialization in VHLO dialect.
                serialized = node_def.attr.get('module').s
                # MLIR bytecode matching StableHLO version.
                mlir_bytecode = stablehlo.deserialize_portable_artifact(serialized)
                stablehlo_module = ir.Module.parse(mlir_bytecode, context=context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/kernels/xla_ops.cc

    void XlaLocalLaunchBase::ComputeAsync(OpKernelContext* ctx, DoneCallback done) {
      VLOG(1) << "XlaLocalLaunchOpBase::Compute "
              << Canonicalize(function_.name(), AttrSlice(&function_.attr()));
      xla_launch_counter->GetCell(platform_info_.device_type().type_string())
          ->IncrementBy(1);
    
      std::vector<const Tensor*> inputs = InputsFromContext(ctx);
      std::vector<XlaCompiler::Argument> xla_compiler_args;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top