Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Densify (0.09 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs TFL_TensorOf<[QI4, QI8, QUI8, QI16, TFL_Quint8]>:$output);
    }
    
    def TFL_DensifyOp: TFL_Op<"densify", [
        Pure,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
      let summary = "Densify operator";
    
      let description = [{
        Converts sparse tensor to dense format.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<1x64x84x31xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testDensify
    func.func @testDensify(%arg0: tensor<? x f32>) -> tensor<? x f32> {
      // CHECK: "tfl.densify"(%arg0) : (tensor<?xf32>) -> tensor<?xf32>
      %0 = "tfl.densify"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/reusify": {
          "version": "1.0.4",
          "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
          "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

         (
           uuidgen --random;
           uuidgen --random;
           uuidgen --random;
         ) | sha256sum \
           | head -c 64
        )";
      done
      # Finally, convert the ASCII hex to base64 to increase the density.
      echo -n "${out}" | xxd -r -p | base64 -w 0
    }
    
    # Helper for configuring iptables rules for metadata server.
    #
    # $1 is the command flag (-I or -D).
    # $2 is the firewall action (LOG or REJECT).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top