Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for TD (0.04 sec)

  1. src/image/jpeg/scan.go

    			}
    		}
    		totalHV += d.comp[compIndex].h * d.comp[compIndex].v
    
    		// The baseline t <= 1 restriction is specified in table B.3.
    		scan[i].td = d.tmp[2+2*i] >> 4
    		if t := scan[i].td; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Td value")
    		}
    		scan[i].ta = d.tmp[2+2*i] & 0x0f
    		if t := scan[i].ta; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Ta value")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_pass.cc

    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"  // IWYU pragma: keep
    
    namespace mlir {
    namespace odml {
    
    namespace {
    
    // This file is generated from `passes.td` and provides the implementation base
    // class.
    #define GEN_PASS_DEF_COMPOSITELOWERINGPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    class CompositeLoweringPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/runlit.site.cfg.py

    config.mlir_obj_root = os.path.join(real_test_srcdir)
    config.mlir_tools_dir = os.path.join(external_srcdir, 'llvm-project', 'mlir')
    # TODO(jpienaar): Replace with suffices in build rule.
    config.suffixes = ['.td', '.mlir', '.pbtxt']
    
    mlir_tf_tools_dirs = [
        'tensorflow/compiler/aot',
        'tensorflow/compiler/mlir',
        'tensorflow/compiler/mlir/lite',
        'tensorflow/compiler/mlir/lite/experimental/tac',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. fastapi/encoders.py

    ENCODERS_BY_TYPE: Dict[Type[Any], Callable[[Any], Any]] = {
        bytes: lambda o: o.decode(),
        Color: str,
        datetime.date: isoformat,
        datetime.datetime: isoformat,
        datetime.time: isoformat,
        datetime.timedelta: lambda td: td.total_seconds(),
        Decimal: decimal_encoder,
        Enum: lambda o: o.value,
        frozenset: list,
        deque: list,
        GeneratorType: list,
        IPv4Address: str,
        IPv4Interface: str,
        IPv4Network: str,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

                                    PatternRewriter& rewriter) const override {
        // It is currently not possible to easily pack the output of a multi-result
        // op into an op with a single varidic output in `.td`.
        auto converted = rewriter.create<TFL::CustomOp>(
            op->getLoc(), op->getResultTypes(), op->getOperands(),
            "TensorListPopBack", TFL::ConstBytesAttr::get(getContext(), ""));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		w.TunnelProtocol = workloadapi.TunnelProtocol_HBONE
    		w.NativeTunnel = true
    	}
    }
    
    func pickTrustDomain(mesh *MeshConfig) string {
    	if td := mesh.GetTrustDomain(); td != "cluster.local" {
    		return td
    	}
    	return ""
    }
    
    func fetchPeerAuthentications(
    	ctx krt.HandlerContext,
    	PeerAuths krt.Collection[*securityclient.PeerAuthentication],
    	meshCfg *MeshConfig,
    	ns string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .table-contents {
        overflow-x: auto;
        padding-left: 0.6rem;
        margin-bottom: 1rem;
    }
    
    td,
    th {
        padding: .25rem .5rem;
        border: 1px solid #e5e5e5;
    }
    
    th {
        text-align: left;
    }
    
    .content tbody tr:nth-child(odd) td,
    .content tbody tr:nth-child(odd) th {
        background-color: #f9f9f9;
    }
    
    /* typography */
    h1, h2, h3, h4, h5, h6 {
        margin-top: 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/conversion_test.go

    	ns := "anything"
    	sa := "foo"
    	pod.Namespace = ns
    	pod.Spec.ServiceAccountName = sa
    
    	mesh := &meshconfig.MeshConfig{TrustDomain: "td.local"}
    
    	san := SecureNamingSAN(pod, mesh)
    
    	expectedSAN := fmt.Sprintf("spiffe://td.local/ns/%v/sa/%v", ns, sa)
    
    	if san != expectedSAN {
    		t.Fatalf("SAN match failed, SAN:%v  expectedSAN:%v", san, expectedSAN)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/tflite_legalize_hlo.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"  // IWYU pragma: keep
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    // This file is generated from `passes.td` and provides the implementation base
    // class.
    #define GEN_PASS_DEF_LEGALIZEHLOTOTFLITEPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    class LegalizeHloToTfLitePass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top