Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,090 for gather (0.25 sec)

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

      %0 = "tf.Gather"(%arg0, %arg1) : (tensor<2x3x6xf32>, tensor<4x5xi32>) -> tensor<4x5x3x6xf32>
      func.return %0 : tensor<4x5x3x6xf32>
    
    // CHECK-LABEL:gatherHigherRankIndices
    // CHECK:  "tfl.gather"(%arg0, %arg1) <{axis = 0 : i32, batch_dims = 0 : i32}> : (tensor<2x3x6xf32>, tensor<4x5xi32>) -> tensor<4x5x3x6xf32>
    }
    
    func.func @gatherNdVectorIndices(%arg0 : tensor<3x2x2xf32>, %arg1 : tensor<2xi32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// The child process must write to a log file, not
    	// the stderr file it inherited from the parent, as
    	// the child may outlive the parent but should not prolong
    	// the life of any pipes created (by the grandparent)
    	// to gather the output of the parent.
    	//
    	// By default, we discard the child process's stderr,
    	// but in line with the uploader, log to a file in debug
    	// only if that directory was created by the user.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/tfl_while_outline.mlir

        %5 = tfl.add %arg2, %cst_5 {fused_activation_function = "NONE"} : tensor<i32>
        %6 = tfl.add %arg1, %cst_5 {fused_activation_function = "NONE"} : tensor<i32>
        %7 = "tfl.gather"(%0, %arg2) {axis = 0 : i32} : (tensor<4x4x3xf32>, tensor<i32>) -> tensor<4x3xf32>
        %8 = "tfl.concatenation"(%7, %arg5) {axis = 1 : i32, fused_activation_function = "NONE"} : (tensor<4x3xf32>, tensor<4x2xf32>) -> tensor<4x5xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. cmd/metacache-server-pool.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: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. cmd/metrics.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: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                !backward_pass_ops.contains(user)) {
              core_tpu_ops.insert(user);
            }
          }
        }
      }
    
      // Gather all TPU ops marked for compilation in this while loop body that also
      // are not in one of the two other sets.
      for (Operation& op : loop_body_func.getOps()) {
        // Find all TPU ops that don't belong to the forward or backward pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/server.go

    		case expfmt.OpenMetricsVersion_0_0_1, "":
    			return FmtOpenMetrics_0_0_1
    		}
    	}
    	return FmtText
    }
    
    func scrapeAndWriteAgentMetrics(registry prometheus.Gatherer, w io.Writer) error {
    	mfs, err := registry.Gather()
    	enc := expfmt.NewEncoder(w, FmtText)
    	if err != nil {
    		return err
    	}
    	for _, mf := range mfs {
    		if err := enc.Encode(mf); err != nil {
    			return err
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        module_str = self._extract_first_xla_call_module_op(
            self._output_saved_model_path
        )
        self.assertTrue(re.search('stablehlo.gather.*xi8>', module_str))
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
                self._output_saved_model_path, self._input_saved_model_path
            ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top