Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 639 for defUse (0.1 sec)

  1. tensorflow/compiler/mlir/lite/transforms/decompose_hybrid_quantization.cc

    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass decomposes dense operations that assume
    // support for hybrid quantization. These cases cover when a dense operation
    // (e.g. matmul) has both quantized and unquantized inputs by dequantizing
    // the quantized inputs, performing the operation in the expressed type, then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_COMPOSITE_AVG_POOL_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_COMPOSITE_AVG_POOL_H_
    
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

      emitSourceFileHeader("Generated Ops Quant Spec Getters", os);
    
      // Retrieve all the definitions derived from Op definition and sort by record
      // name.
      std::vector<Record *> defs = records.getAllDerivedDefinitions("Op");
      llvm::sort(defs, LessRecord());
    
      OUT(0) << "static std::unique_ptr<quant::OpQuantSpec> "
                "GetOpQuantSpec(mlir::Operation *op, bool "
                "disable_per_channel_for_dense_layers = false) {\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-monolithic/common.gradle

            all {
                cCompiler.define "SOMETHING1=0"
                cCompiler.define "SOMETHING2=0"
                cCompiler.define "SOMETHING3=0"
                cCompiler.define "SOMETHING4=0"
                cCompiler.define "SOMETHING5=0"
                cCompiler.define "SOMETHING6=0"
                cCompiler.define "SOMETHING7=0"
    
                cppCompiler.define "SOMETHING1=0"
                cppCompiler.define "SOMETHING2=0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/c/tf_status.h

    typedef TSL_Code TF_Code;
    // LINT.IfChange
    #define TF_OK TSL_OK
    #define TF_CANCELLED TSL_CANCELLED
    #define TF_UNKNOWN TSL_UNKNOWN
    #define TF_INVALID_ARGUMENT TSL_INVALID_ARGUMENT
    #define TF_DEADLINE_EXCEEDED TSL_DEADLINE_EXCEEDED
    #define TF_NOT_FOUND TSL_NOT_FOUND
    #define TF_ALREADY_EXISTS TSL_ALREADY_EXISTS
    #define TF_PERMISSION_DENIED TSL_PERMISSION_DENIED
    #define TF_UNAUTHENTICATED TSL_UNAUTHENTICATED
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1block_arm.s

    // Register definitions
    #define Rdata	R0	// Pointer to incoming data
    #define Rconst	R1	// Current constant for SHA round
    #define Ra	R2		// SHA-1 accumulator
    #define Rb	R3		// SHA-1 accumulator
    #define Rc	R4		// SHA-1 accumulator
    #define Rd	R5		// SHA-1 accumulator
    #define Re	R6		// SHA-1 accumulator
    #define Rt0	R7		// Temporary
    #define Rt1	R8		// Temporary
    // r9, r10 are forbidden
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_ppc64x.s

    #ifdef GOARCH_ppc64le
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVWZ	off(ptr),dst
    #else
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVD	$off,idx; \
    	MOVWBR	(idx)(ptr), dst
    #endif
    
    #define M00 R18
    #define M01 R19
    #define M02 R20
    #define M03 R24
    #define M04 R25
    #define M05 R26
    #define M06 R27
    #define M07 R28
    #define M08 R29
    #define M09 R21
    #define M10 R11
    #define M11 R8
    #define M12 R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h

    // lowered from the quantized graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizeIntGraphPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_CONVERTTFQUANTOPSTOMHLO
    #define GEN_PASS_DECL_CONVERTTFQUANTTYPES
    #define GEN_PASS_DECL_VERIFYQUANTLEGALIZATION
    #define GEN_PASS_DECL_OPTIMIZEINTGRAPH
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h.inc"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/c/tf_status_helper.h

    using TF_StatusPtr = std::unique_ptr<TF_Status, internal::TF_StatusDeleter>;
    
    }  // namespace tensorflow
    
    #define TF_STATUS_ASSIGN_OR_RETURN(lhs, rexpr, c_status) \
      _TF_STATUS_ASSIGN_OR_RETURN_IMPL(                      \
          _TF_STATUS_CONCAT(_status_or_value, __COUNTER__), lhs, rexpr, c_status);
    
    #define _TF_STATUS_ASSIGN_OR_RETURN_IMPL(statusor, lhs, rexpr, c_status) \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. manifests/charts/gateway/templates/_helpers.tpl

    {{- define "gateway.name" -}}
    {{- if eq .Release.Name "RELEASE-NAME" -}}
      {{- .Values.name | default "istio-ingressgateway" -}}
    {{- else -}}
      {{- .Values.name | default .Release.Name | default "istio-ingressgateway" -}}
    {{- end -}}
    {{- end }}
    
    {{/*
    Create chart name and version as used by the helm.sh/chart label.
    */}}
    {{- define "gateway.chart" -}}
    {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top