Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,540 for gather (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: %[[V42:.*]] = "mhlo.concatenate"(%[[V33]], %[[V32]]) <{dimension = 0 : i64}> : (tensor<1x22x128xi32>, tensor<1x22x128xi32>) -> tensor<2x22x128xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    // Since tflite doesn't support unsigned for other types, returns error if
    // `isSigned` is set to false for other types.
    static StatusOr<tflite::TensorType> GetTFLiteType(Type type,
                                                      bool is_signed = true) {
      if (!is_signed) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    // 6. Save all machine registers (including flags and floating point registers)
    //    so they can be restored later by the debugger.
    // 7. Set the PC to debugCallV2 and resume execution.
    //
    // If the goroutine is in state _Grunnable, then it's not generally
    // safe to inject a call because it may return out via other runtime
    // operations. Instead, the debugger should unwind the stack to find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    			}
    		}
    	}
    
    	return m
    }
    
    // clangos lists the operating systems where we prefer clang to gcc.
    var clangos = []string{
    	"darwin", "ios", // macOS 10.9 and later require clang
    	"freebsd", // FreeBSD 10 and later do not ship gcc
    	"openbsd", // OpenBSD ships with GCC 4.2, which is now quite old.
    }
    
    // compilerEnvLookup returns the compiler settings for goos/goarch in map m.
    // kind is "CC" or "CXX".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    //===----------------------------------------------------------------------===//
    // Gather op
    //===----------------------------------------------------------------------===//
    
    LogicalResult GatherOp::verify() {
      GatherOp op = *this;
      ShapedType params_type = op.getParams().getType().cast<ShapedType>();
      // TFLite gather kernel supports 1D string input only.
      if (params_type.getElementType().isa<mlir::TF::StringType>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/runtime/asm_arm64.s

    // 6. Save all machine registers (including flags and fpsimd registers)
    //    so they can be restored later by the debugger.
    // 7. Set the PC to debugCallV2 and resume execution.
    //
    // If the goroutine is in state _Grunnable, then it's not generally
    // safe to inject a call because it may return out via other runtime
    // operations. Instead, the debugger should unwind the stack to find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // Condition 4 - shape of slice should be same with shape of input on the
    // offset dimensions.
    class RewriteQuantizedGatherOp : public OpRewritePattern<stablehlo::GatherOp> {
     public:
      using OpRewritePattern<stablehlo::GatherOp>::OpRewritePattern;
    
      LogicalResult match(stablehlo::GatherOp op) const override {
        const Type input_type = op.getOperand().getType();
        const Type output_type = op.getResult().getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    				//
    				// Either way, punt on the query rather than erroring out just yet.
    				return pathSet{}
    			}
    
    			return r.tryWildcard(ctx, q, m)
    		})
    	}
    
    	// Even if no modules matched, we shouldn't query for a new module to provide
    	// the pattern yet: some other query may yet induce a new requirement that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                preset_method=_PresetMethod.METHOD_STATIC_RANGE_INT8
            ),
            tags=tags,
            signature_keys=['serving_default'],
            op_set=quant_opts_pb2.XLA,
            # Gather op is opt-outed if the size is smaller than the threshold.
            min_num_elements_for_weights=1024 if expect_quantized_gather else 8192,
        )
    
        data_gen = self._create_data_generator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top