Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for addType (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          switch (nested_value.value_case()) {
            case AttrValue::kS:
              list->add_s(nested_value.s());
              break;
            case AttrValue::kType:
              list->add_type(nested_value.type());
              break;
            case AttrValue::kShape:
              *list->add_shape() = nested_value.shape();
              break;
            default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        const std::string tf_op_full_name = llvm::Twine("tf.", tf_op_name).str();
    
        // Create the TF op
        OperationState op_state(op.getLoc(), tf_op_full_name);
        op_state.addOperands(op.getOperands());
        op_state.addTypes(op.getResultTypes());
    
        SmallVector<NamedAttribute, 2> attrs;
        std::string parsed_op_name;
        tensorflow::NodeDef node_def;
        if (failed(ParseCustomOption(op.getCustomOption().getValue(), op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/util/iptables/iptables_test.go

    *nat
    :PREROUTING ACCEPT [2136997:197881818]
    :POSTROUTING ACCEPT [4284525:258542680]
    :OUTPUT ACCEPT [5901660:357267963]
    -A PREROUTING -m addrtype --dst-type LOCAL -m mark --mark 0x00004000/0x00004000 -j DOCKER
    COMMIT
    # Completed on Wed Oct 29 14:56:01 2014`
    
    	fcmd := fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{
    			// Success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      AttrValue value;
      auto& type_list = *value.mutable_list();
      for (auto type : types) {
        DataType dtype;
        TF_RETURN_IF_ERROR(ConvertScalarTypeToDataType(type, &dtype));
        type_list.add_type(dtype);
      }
    
      auto result = values->insert({string(name), value});
      assert(result.second && "cannot have multiple attributes with the same name");
      (void)result;
    
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/reconciler_test.go

    		at := getAddressType(address.IP)
    		if at != nil && *at == addrType && len(expectedEndpoints) < maxEndpointsPerSubset {
    			expectedEndpoints[address.IP] = addressInfo{
    				ready:     true,
    				epAddress: address,
    			}
    		}
    	}
    
    	for _, address := range epSubset.NotReadyAddresses {
    		at := getAddressType(address.IP)
    		if at != nil && *at == addrType && len(expectedEndpoints) < maxEndpointsPerSubset {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

        ) {
            List<TypeSpec> interceptorTypeSpecs = generateInterceptorClasses(requestsClassGroup, onFailure);
    
            return builder -> builder
                .addModifiers(Modifier.PUBLIC)
                .addTypes(interceptorTypeSpecs);
        }
    
        @SuppressWarnings("ReturnValueIgnored")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      DCHECK_GE(num_regions, 1);
      for (int i = 0; i < num_regions; ++i) {
        Region* region = state.addRegion();
        region->push_back(new Block);
      }
      state.addTypes(output_types);
    }
    
    Block& ParallelExecuteOp::GetRegionBlockWithIndex(unsigned index) {
      return getOperation()->getRegion(index).front();
    }
    
    Operation::result_range ParallelExecuteOp::GetRegionOutputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		pp := (*RawSockaddrTIPC)(unsafe.Pointer(rsa))
    
    		sa := &SockaddrTIPC{
    			Scope: int(pp.Scope),
    		}
    
    		// Determine which union variant is present in pp.Addr by checking
    		// pp.Addrtype.
    		switch pp.Addrtype {
    		case TIPC_SERVICE_RANGE:
    			sa.Addr = (*TIPCServiceRange)(unsafe.Pointer(&pp.Addr))
    		case TIPC_SERVICE_ADDR:
    			sa.Addr = (*TIPCServiceName)(unsafe.Pointer(&pp.Addr))
    		case TIPC_SOCKET_ADDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        bool WrapsSingleOp();
      }];
    
      let builders = [
        OpBuilder<(ins "StringAttr":$device, "TypeRange":$result_types),
        [{
          $_state.addAttribute("device", device);
          $_state.addTypes(result_types);
          $_state.addRegion();
        }]>
      ];
    
      let hasCanonicalizer = 1;
    }
    
    def TfDevice_ReturnOp : TfDevice_Op<"return", [Pure, ReturnLike, Terminator]> {
      let summary = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
      let hasCanonicalizer = 1;
    
      let builders = [
        OpBuilder<(ins "TypedAttr":$value),
        [{
          $_state.addAttribute("value", value);
          $_state.addTypes(value.getType());
        }]>
      ];
    
      let extraClassDeclaration = [{
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r);
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top