Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for opset (0.05 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      ShapedType input_shape =
          mlir::dyn_cast<ShapedType>(op->getOperand(0).getType());
      if (!input_shape) {
        return op->emitError(
            "Only input with known shape is supported for Uniform Quantized "
            "opset.");
      }
    
      if (op->getParentOfType<func::FuncOp>().getName().contains("depthwise_")) {
        feature_group_cnt = input_shape.getDimSize(3);
      }
    
      attrs.push_back(rewriter.getNamedAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions='target-opset=XLA' | FileCheck --check-prefix=XLA %s
    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions='target-opset=XLA enable-per-channel-quantization=true' | FileCheck --check-prefix=XLA_PerChannel %s
    
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset.go

    )
    
    // IPSetVersioner can query the current ipset version.
    type IPSetVersioner interface {
    	// returns "X.Y"
    	GetVersion() (string, error)
    }
    
    // IPSet wraps util/ipset which is used by IPVS proxier.
    type IPSet struct {
    	utilipset.IPSet
    	// activeEntries is the current active entries of the ipset.
    	activeEntries sets.Set[string]
    	// handle is the util ipset interface handle.
    	handle utilipset.Interface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    	}
    }
    
    // Handle children
    func (po *poset) setchl(i uint32, l posetEdge) { po.nodes[i].l = l }
    func (po *poset) setchr(i uint32, r posetEdge) { po.nodes[i].r = r }
    func (po *poset) chl(i uint32) uint32          { return po.nodes[i].l.Target() }
    func (po *poset) chr(i uint32) uint32          { return po.nodes[i].r.Target() }
    func (po *poset) children(i uint32) (posetEdge, posetEdge) {
    	return po.nodes[i].l, po.nodes[i].r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/ipset/ipset.go

    	ListSets() ([]string, error)
    	// GetVersion returns the "X.Y" version string for ipset.
    	GetVersion() (string, error)
    }
    
    // IPSetCmd represents the ipset util. We use ipset command for ipset execute.
    const IPSetCmd = "ipset"
    
    // EntryMemberPattern is the regular expression pattern of ipset member list.
    // The raw output of ipset command `ipset list {set}` is similar to,
    // Name: foobar
    // Type: hash:ip,port
    // Revision: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. cni/pkg/ipset/ipset.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 ipset
    
    import (
    	"errors"
    	"fmt"
    	"net/netip"
    )
    
    type IPSet struct {
    	V4Name string
    	V6Name string
    	Prefix string
    	Deps   NetlinkIpsetDeps
    }
    
    const (
    	V4Name = "%s-v4"
    	V6Name = "%s-v6"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/ipset/ipset_test.go

    	testCases := []struct {
    		ipset     *IPSet
    		expectErr bool
    		desc      string
    	}{
    		{ // case[0]
    			ipset: &IPSet{
    				Name:       "test",
    				SetType:    HashIPPort,
    				HashFamily: ProtocolFamilyIPV4,
    				HashSize:   1024,
    				MaxElem:    1024,
    			},
    			expectErr: false,
    			desc:      "No Port range",
    		},
    		{ // case[1]
    			ipset: &IPSet{
    				Name:       "SET",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset/testing/fake.go

    	"k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    )
    
    // FakeIPSet is a no-op implementation of ipset Interface
    type FakeIPSet struct {
    	// version of ipset util
    	Version string
    	// The key of Sets map is the ip set name
    	Sets map[string]*ipset.IPSet
    	// The key of Entries map is the ip set name where the entries exists
    	Entries map[string]sets.String
    }
    
    // NewFake create a new fake ipset interface - it initialize the FakeIPSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/net.go

    	// allow overriding for tests
    	netnsRunner        func(fdable NetnsFd, toRun func() error) error
    	hostsideProbeIPSet ipset.IPSet
    }
    
    var _ MeshDataplane = &NetServer{}
    
    func newNetServer(ztunnelServer ZtunnelServer, podNsMap *podNetnsCache,
    	iptablesConfigurator *iptables.IptablesConfigurator, podNs PodNetnsFinder,
    	probeSet ipset.IPSet,
    ) *NetServer {
    	return &NetServer{
    		ztunnelServer:        ztunnelServer,
    		currentPodSnapshot:   podNsMap,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package ipset
    
    // Type represents the ipset type
    type Type string
    
    const (
    	// HashIPPort represents the `hash:ip,port` type ipset.  The hash:ip,port is similar to hash:ip but
    	// you can store IP address and protocol-port pairs in it.  TCP, SCTP, UDP, UDPLITE, ICMP and ICMPv6 are supported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top