Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Luminance (0.14 sec)

  1. src/image/jpeg/writer_test.go

    		}
    	}
    }
    
    // unscaledQuantInNaturalOrder are the unscaled quantization tables in
    // natural (not zig-zag) order, as specified in section K.1.
    var unscaledQuantInNaturalOrder = [nQuantIndex][blockSize]byte{
    	// Luminance.
    	{
    		16, 11, 10, 16, 24, 40, 51, 61,
    		12, 12, 14, 19, 26, 58, 60, 55,
    		14, 13, 16, 24, 40, 57, 69, 56,
    		14, 17, 22, 29, 51, 87, 80, 62,
    		18, 22, 37, 56, 68, 109, 103, 77,
    		24, 35, 55, 64, 81, 104, 113, 92,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/image/jpeg/writer.go

    // This encoder uses the same Huffman encoding for all images.
    var theHuffmanSpec = [nHuffIndex]huffmanSpec{
    	// Luminance DC.
    	{
    		[16]byte{0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0},
    		[]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11},
    	},
    	// Luminance AC.
    	{
    		[16]byte{0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 125},
    		[]byte{
    			0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/image/color/ycbcr.go

    // codecs often use the terms YUV and Y'CbCr interchangeably, but strictly
    // speaking, the term YUV applies only to analog video signals, and Y' (luma)
    // is Y (luminance) after applying gamma correction.
    //
    // Conversion between RGB and Y'CbCr is lossy and there are multiple, slightly
    // different formulae for converting between the two. This package follows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      // success if union operation was completed successfully, otherwise returns
      // failure.
      //
      // Members can be clustered together:
      //   1. This will not break dominance property of the IR.
      //   2. New clustering policy constraints can be propagated through the
      //      already clustered operations.
      LogicalResult Union(unsigned a, unsigned b,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopreschedchecks.go

    // These new phis can only occur at the dominance frontier of h; block s is in the dominance
    // frontier of h if h does not strictly dominate s and if s is a successor of a block b where
    // either b = h or h strictly dominates b.
    // These newly created phis are themselves new definitions that may require addition of their
    // own trivial phi functions in their own dominance frontier, and this is handled recursively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          return true;
        }
      }
      return false;
    }
    
    // Sorts the operations in the provided range to enforce dominance.
    // This is useful after fusing / reorganizing Operations in a block and later
    // needing to readjust the ordering to ensure dominance.
    LogicalResult SortTopologically(Block::iterator begin, Block::iterator end) {
      Block* block = begin->getBlock();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // inserted right after `tf.OpC`. The live-out `%0`, however, is used by
    // `tf.OpB`, which won't dominate the region. This function reorders all users
    // of the cluster op to be placed after the cluster op itself so that SSA
    // dominance is preserved after cluster op creation.
    void ReorderOpResultUses(mlir::Operation* cluster);
    
    }  // namespace mlir::TF
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

      // op. So live-out values no longer escape the region.
      ReplaceLiveOutExternalUses(live_outs, launch_op);
    
      // Ensure that users of the launch op's results appear after the launch op
      // in order to preserve the dominance property.
      TF::ReorderOpResultUses(launch_op);
    }
    
    std::string GetDevice(Operation* op) {
      auto device_attr = op->getAttrOfType<StringAttr>("device");
      return device_attr ? device_attr.getValue().str() : "";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

        }
        op->dropAllDefinedValueUses();
        op->dropAllReferences();
        op->erase();
      }
      // Ensure that users of the call op's results appear after the launch op in
      // order to preserve the dominance property.
      TF::ReorderOpResultUses(call_op);
    }
    
    }  // namespace common
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	}
    
    	// Match statements that occur after a call to t.Parallel following the final
    	// labeled statement in the function body.
    	//
    	// We iterate over lit.Body.List to have a simple, fast and "frequent enough"
    	// dominance relationship for t.Parallel(): lit.Body.List[i] dominates
    	// lit.Body.List[j] for i < j unless there is a jump.
    	var stmts []ast.Stmt
    	afterParallel := false
    	for _, stmt := range lit.Body.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top